Amazon Local Currency

Display Amazon prices in your local currency.

Cos'è Amazon Local Currency?

Amazon Local Currency è un'estensione di Chrome sviluppata da Yossi Frances, e la sua funzione principale è "Display Amazon prices in your local currency.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Amazon Local Currency

Scarica i file di estensione Amazon Local Currency 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

                        Display Amazon prices on your local currency.
Logo: "Conversion" by Delwar Hossain from the Noun Project (https://thenounproject.com/)                    

Informazioni di Base sull'Estensione

Nome Amazon Local Currency Amazon Local Currency
ID hgbdbdlpcfhpindpjemalpcklpoececp
URL Ufficiale https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp
Descrizione Display Amazon prices in your local currency.
Dimensione del File 571 KB
Conteggio Installazioni 458
Versione Corrente 1.0.3
Ultimo Aggiornamento 2021-08-16
Data di Pubblicazione 2019-02-26
Valutazione 3.82/5 Totale 11 Valutazioni
Sviluppatore Yossi Frances
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/yfrans/amazon-local-currency
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amazon Local Currency",
    "description": "Display Amazon prices in your local currency.",
    "author": "Yossi Frances",
    "version": "1.0.3",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.it\/*",
                "*:\/\/*.amazon.co.jp\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "https:\/\/amazon-local-currency.herokuapp.com\/"
    ]
}