Local
Find Amazon products locally. Get what you want today, with no shipping cost!
Was ist Local?
Local ist eine Chrome-Erweiterung, die von berger.m.sophie entwickelt wurde, und ihr Hauptmerkmal ist "Find Amazon products locally. Get what you want today, with no shipping cost!".
Erweiterungsscreenshots
Local-Erweiterungs-CRX-Datei herunterladen
Laden Sie Local-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Local |
ID | apdmmfimgdclckmmkjkojbgmeinlloah |
Offizielle URL | https://chromewebstore.google.com/detail/local/apdmmfimgdclckmmkjkojbgmeinlloah |
Beschreibung | Find Amazon products locally. Get what you want today, with no shipping cost! |
Dateigröße | 11.91 KB |
Installationsanzahl | 523 |
Aktuelle Version | 2.1 |
Letztes Update | 2022-10-07 |
Veröffentlichungsdatum | 2022-02-02 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | berger.m.sophie |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |