Local

Find Amazon products locally. Get what you want today, with no shipping cost!

Cos'è Local?

Local è un'estensione di Chrome sviluppata da berger.m.sophie, e la sua funzione principale è "Find Amazon products locally. Get what you want today, with no shipping cost!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Local

Scarica i file di estensione Local in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Local Local
ID apdmmfimgdclckmmkjkojbgmeinlloah
URL Ufficiale https://chromewebstore.google.com/detail/local/apdmmfimgdclckmmkjkojbgmeinlloah
Descrizione Find Amazon products locally. Get what you want today, with no shipping cost!
Dimensione del File 11.91 KB
Conteggio Installazioni 523
Versione Corrente 2.1
Ultimo Aggiornamento 2022-10-07
Data di Pubblicazione 2022-02-02
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore berger.m.sophie
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}