Aide & installation

📱 Installer l'app sur votre téléphone

🍎
iPhone / iPad — Safari
1
Ouvrez standbuy.app dans Safari
2
Appuyez sur ⬆ Partager
3
Faites défiler → "Sur l'écran d'accueil"
4
Nommez-la "StandBuy"Ajouter
5
L'icône apparaît sur votre écran d'accueil comme une vraie app !
🤖
Android — Chrome
1
Ouvrez standbuy.app dans Chrome
2
Appuyez sur ⋮ Menu
3
Appuyez sur "Ajouter à l'écran d'accueil"
4
Nommez-la "StandBuy"Ajouter
5
L'icône apparaît sur votre écran d'accueil !

🔖 Bookmarklet — capturer depuis n'importe quel site

Le bookmarklet vous permet d'ajouter un article à StandBuy en un tap depuis n'importe quel site, sans quitter votre navigateur.

Code à copier

javascript:(function(){ (function (root) { 'use strict'; function guessCategory(name, url) { var text = ((name || '') + ' ' + (url || '')).toLowerCase(); if (/livre|book|fnac|cultura|roman|bd|manga|cd|vinyl|music/.test(text)) return 'Culture'; if (/veste|robe|jean|chaussure|sac|vetement|zara|hm|sezane|asos|pull|manteau/.test(text)) return 'Mode'; if (/lampe|canap[ée]|deco|meuble|ikea|maison|coussin|tapis/.test(text)) return 'Déco'; if (/plante|jardin|graine|arrosoir|pot|fleur|truffaut|gamm/.test(text)) return 'Jardinage'; if (/iphone|samsung|apple|laptop|clavier|souris|tech|darty|ordinateur/.test(text)) return 'Tech'; if (/sport|velo|raquette|nike|adidas|running|yoga|fitness/.test(text)) return 'Sport'; if (/cuisine|casserole|poele|couteau|cook|kitchen/.test(text)) return 'Cuisine'; if (/parfum|creme|s[ée]rum|soin|beaute|makeup|maquillage/.test(text)) return 'Beauté'; if (/voyage|valise|hotel|airbnb|avion|travel/.test(text)) return 'Voyage'; if (/lego|jeux|jeu|dice|d[ée]s|figurine|gaming/.test(text)) return 'Loisirs'; if (/restaurant|sortie|concert|spectacle|theatre/.test(text)) return 'Sorties'; if (/bijou|collier|bague|bracelet|or|argent/.test(text)) return 'Bijoux'; if (/montre|watch|zenith|rolex|tissot|oris|iwc/.test(text)) return 'Montres'; if (/bricolage|outil|leroy|castorama/.test(text)) return 'Bricolage'; if (/livre|roman|book|amazon|fnac/.test(text)) return 'Livres'; return 'Autre'; } function scrapePageData() { var name = (document.querySelector('h1') || {}).innerText || (document.querySelector('meta[property="og:title"]') || {}).content || document.title || ''; var price = ''; var priceSelectors = ['[itemprop="price"]', '[class*="price"]', '[class*="Prix"]', '[data-price]', '.product-price', '.offer-price']; for (var i = 0; i < priceSelectors.length; i++) { var el = document.querySelector(priceSelectors[i]); if (el) { var txt = el.getAttribute('content') || el.innerText || ''; var num = parseFloat(txt.replace(/[^\d,.]/g, '').replace(',', '.')); if (!isNaN(num) && num > 0 && num < 100000) { price = String(num); break; } } } var imgs = []; var og = (document.querySelector('meta[property="og:image"]') || {}).content; if (og) imgs.push(og); var imgEls = document.querySelectorAll('[class*="product"] img, [class*="gallery"] img, main img'); for (var j = 0; j < imgEls.length && imgs.length < 6; j++) { var src = imgEls[j].getAttribute('data-src') || imgEls[j].getAttribute('data-lazy-src') || imgEls[j].src; if (src && src.indexOf('http') === 0 && imgs.indexOf(src) === -1) imgs.push(src); } return { name: (name || '').substring(0, 120), price: price, imgs: imgs, img: imgs[0] || '' }; } root.SBScraper = { scrapePageData: scrapePageData, guessCategory: guessCategory }; })(typeof window !== 'undefined' ? window : (typeof self !== 'undefined' ? self : this)); var d=window.SBScraper.scrapePageData(); window.open('https://standbuy.app?add=1&name='+encodeURIComponent(d.name||'')+'&url='+encodeURIComponent(location.href)+'&img='+encodeURIComponent(d.img||'')+'&price='+encodeURIComponent(d.price||''),'_blank'); })();

🍎 Installation iPhone / iPad (Safari)

1
Dans Safari, ouvrez n'importe quelle page web
2
Appuyez sur ⬆ PartagerAjouter aux favoris
3
Nommez-le "+StandBuy" → Enregistrer
4
Ouvrez vos Favoris (icône livre), appuyez longuement sur "+StandBuy"Modifier
5
Remplacez l'URL par le code copié ci-dessus → Enregistrer

🤖 Installation Android (Chrome)

1
Dans Chrome, ouvrez n'importe quelle page web
2
Appuyez sur ⋮ MenuFavorisAjouter aux favoris
3
Nommez-le "+StandBuy" → Enregistrer
4
Dans la barre d'adresse, tapez "+Stan" pour faire apparaître le favori
5
Appuyez longuement → Modifier → remplacez l'URL par le code copié

Comment l'utiliser

1
Naviguez sur une page produit (Zara, Amazon, Fnac…)
2
Dans la barre d'adresse, tapez "+Stan"
3
Appuyez sur "+StandBuy"
4
StandBuy s'ouvre avec le formulaire pré-rempli
5
Vérifiez les infos et appuyez Ajouter
💡 L'extension Chrome offre une meilleure expérience sur ordinateur — elle détecte automatiquement le nom, le prix et l'image du produit.

Help & installation

📱 Install the app on your phone

🍎
iPhone / iPad — Safari
1
Open standbuy.app in Safari
2
Tap ⬆ Share
3
Scroll down → "Add to Home Screen"
4
Name it "StandBuy"Add
5
The icon appears on your home screen just like a native app!
🤖
Android — Chrome
1
Open standbuy.app in Chrome
2
Tap ⋮ Menu
3
Tap "Add to Home Screen"
4
Name it "StandBuy"Add
5
The icon appears on your home screen!

🔖 Bookmarklet — capture from any website

The bookmarklet lets you add an item to StandBuy with one tap from any website, without leaving your browser.

Code to copy

javascript:(function(){ (function (root) { 'use strict'; function guessCategory(name, url) { var text = ((name || '') + ' ' + (url || '')).toLowerCase(); if (/livre|book|fnac|cultura|roman|bd|manga|cd|vinyl|music/.test(text)) return 'Culture'; if (/veste|robe|jean|chaussure|sac|vetement|zara|hm|sezane|asos|pull|manteau/.test(text)) return 'Mode'; if (/lampe|canap[ée]|deco|meuble|ikea|maison|coussin|tapis/.test(text)) return 'Déco'; if (/plante|jardin|graine|arrosoir|pot|fleur|truffaut|gamm/.test(text)) return 'Jardinage'; if (/iphone|samsung|apple|laptop|clavier|souris|tech|darty|ordinateur/.test(text)) return 'Tech'; if (/sport|velo|raquette|nike|adidas|running|yoga|fitness/.test(text)) return 'Sport'; if (/cuisine|casserole|poele|couteau|cook|kitchen/.test(text)) return 'Cuisine'; if (/parfum|creme|s[ée]rum|soin|beaute|makeup|maquillage/.test(text)) return 'Beauté'; if (/voyage|valise|hotel|airbnb|avion|travel/.test(text)) return 'Voyage'; if (/lego|jeux|jeu|dice|d[ée]s|figurine|gaming/.test(text)) return 'Loisirs'; if (/restaurant|sortie|concert|spectacle|theatre/.test(text)) return 'Sorties'; if (/bijou|collier|bague|bracelet|or|argent/.test(text)) return 'Bijoux'; if (/montre|watch|zenith|rolex|tissot|oris|iwc/.test(text)) return 'Montres'; if (/bricolage|outil|leroy|castorama/.test(text)) return 'Bricolage'; if (/livre|roman|book|amazon|fnac/.test(text)) return 'Livres'; return 'Autre'; } function scrapePageData() { var name = (document.querySelector('h1') || {}).innerText || (document.querySelector('meta[property="og:title"]') || {}).content || document.title || ''; var price = ''; var priceSelectors = ['[itemprop="price"]', '[class*="price"]', '[class*="Prix"]', '[data-price]', '.product-price', '.offer-price']; for (var i = 0; i < priceSelectors.length; i++) { var el = document.querySelector(priceSelectors[i]); if (el) { var txt = el.getAttribute('content') || el.innerText || ''; var num = parseFloat(txt.replace(/[^\d,.]/g, '').replace(',', '.')); if (!isNaN(num) && num > 0 && num < 100000) { price = String(num); break; } } } var imgs = []; var og = (document.querySelector('meta[property="og:image"]') || {}).content; if (og) imgs.push(og); var imgEls = document.querySelectorAll('[class*="product"] img, [class*="gallery"] img, main img'); for (var j = 0; j < imgEls.length && imgs.length < 6; j++) { var src = imgEls[j].getAttribute('data-src') || imgEls[j].getAttribute('data-lazy-src') || imgEls[j].src; if (src && src.indexOf('http') === 0 && imgs.indexOf(src) === -1) imgs.push(src); } return { name: (name || '').substring(0, 120), price: price, imgs: imgs, img: imgs[0] || '' }; } root.SBScraper = { scrapePageData: scrapePageData, guessCategory: guessCategory }; })(typeof window !== 'undefined' ? window : (typeof self !== 'undefined' ? self : this)); var d=window.SBScraper.scrapePageData(); window.open('https://standbuy.app?add=1&name='+encodeURIComponent(d.name||'')+'&url='+encodeURIComponent(location.href)+'&img='+encodeURIComponent(d.img||'')+'&price='+encodeURIComponent(d.price||''),'_blank'); })();

🍎 Installation on iPhone / iPad (Safari)

1
In Safari, open any webpage
2
Tap ⬆ ShareAdd Bookmark
3
Name it "+StandBuy" → Save
4
Open Bookmarks (book icon), long-press "+StandBuy"Edit
5
Replace the URL with the code copied above → Save

🤖 Installation on Android (Chrome)

1
In Chrome, open any webpage
2
Tap ⋮ MenuBookmarksAdd Bookmark
3
Name it "+StandBuy" → Save
4
In the address bar, type "+Stan" to find the bookmark
5
Long-press → Edit → replace the URL with the copied code

How to use it

1
Browse to a product page (Zara, Amazon, etc.)
2
In the address bar, type "+Stan"
3
Tap "+StandBuy"
4
StandBuy opens with the form pre-filled
5
Check the details and tap Add
💡 The Chrome extension offers a better experience on desktop — it automatically detects the product name, price and image.