Local
Find Amazon products locally. Get what you want today, with no shipping cost!
Qu'est-ce que Local ?
Local est une extension Chrome développée par berger.m.sophie, et sa fonction principale est "Find Amazon products locally. Get what you want today, with no shipping cost!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Local
Téléchargez les fichiers d'extension Local au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This is an extension that allows users to search for Amazon products in their own surrounding in order to find local stores at which to buy the desired items. 1) Open up the product page on Amazon 2) Click the extension icon in your bookmarks bar 3) See all the relevant stores on a map!
Informations de Base sur l'Extension
Nom | Local |
ID | apdmmfimgdclckmmkjkojbgmeinlloah |
URL Officiel | https://chromewebstore.google.com/detail/local/apdmmfimgdclckmmkjkojbgmeinlloah |
Description | Find Amazon products locally. Get what you want today, with no shipping cost! |
Taille du Fichier | 11.91 KB |
Nombre d'Installations | 523 |
Version Actuelle | 2.1 |
Dernière Mise à Jour | 2022-10-07 |
Date de Publication | 2022-02-02 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | berger.m.sophie |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Local", "description": "Find Amazon products locally. Get what you want today, with no shipping cost!", "version": "2.1", "permissions": [ "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.at\/*", "https:\/\/www.amazon.de\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icons8-shop-local-16.png", "32": "images\/icons8-shop-local-32.png", "48": "images\/icons8-shop-local-48.png", "100": "images\/icons8-shop-local-100.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icons8-shop-local-16.png", "32": "images\/icons8-shop-local-32.png", "48": "images\/icons8-shop-local-48.png", "100": "images\/icons8-shop-local-100.png" } } |