Amazon Local Currency
Display Amazon prices in your local currency.
Qu'est-ce que Amazon Local Currency ?
Amazon Local Currency est une extension Chrome développée par Yossi Frances, et sa fonction principale est "Display Amazon prices in your local currency.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Amazon Local Currency
Téléchargez les fichiers d'extension Amazon Local Currency au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Display Amazon prices on your local currency. Logo: "Conversion" by Delwar Hossain from the Noun Project (https://thenounproject.com/)
Informations de Base sur l'Extension
Nom | Amazon Local Currency |
ID | hgbdbdlpcfhpindpjemalpcklpoececp |
URL Officiel | https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp |
Description | Display Amazon prices in your local currency. |
Taille du Fichier | 571 KB |
Nombre d'Installations | 458 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2021-08-16 |
Date de Publication | 2019-02-26 |
Évaluation | 3.82/5 Total 11 Évaluations |
Développeur | Yossi Frances |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/yfrans/amazon-local-currency |
Langues Prises en Charge | 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\/" ] } |