Amazon Local Currency

Display Amazon prices in your local currency.

Hvad er Amazon Local Currency?

Amazon Local Currency er en Chrome-udvidelse udviklet af Yossi Frances, og dens hovedfunktion er "Display Amazon prices in your local currency.".

Udvidelsesskærmbilleder

screenshot

Download Amazon Local Currency-udvidelses-CRX-fil

Download Amazon Local Currency-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Amazon Local Currency Amazon Local Currency
ID hgbdbdlpcfhpindpjemalpcklpoececp
Officiel URL https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp
Beskrivelse Display Amazon prices in your local currency.
Filstørrelse 571 KB
Antal Installationer 458
Nuværende Version 1.0.3
Senest Opdateret 2021-08-16
Udgivelsesdato 2019-02-26
Bedømmelse 3.82/5 Samlet 11 Bedømmelser
Udvikler Yossi Frances
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/yfrans/amazon-local-currency
Understøttede Sprog 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\/"
    ]
}