Amazon Local Currency

Display Amazon prices in your local currency.

Wat is Amazon Local Currency?

Amazon Local Currency is een Chrome-extensie ontwikkeld door Yossi Frances, en de belangrijkste functie is "Display Amazon prices in your local currency.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Amazon Local Currency

Download Amazon Local Currency-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Amazon Local Currency Amazon Local Currency
ID hgbdbdlpcfhpindpjemalpcklpoececp
Officiële URL https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp
Beschrijving Display Amazon prices in your local currency.
Bestandsgrootte 571 KB
Aantal Installaties 458
Huidige Versie 1.0.3
Laatst Bijgewerkt 2021-08-16
Publicatiedatum 2019-02-26
Beoordeling 3.82/5 Totaal 11 Beoordelingen
Ontwikkelaar Yossi Frances
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/yfrans/amazon-local-currency
Ondersteunde Talen 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\/"
    ]
}