Amazon Local Currency
Display Amazon prices in your local currency.
Vad är Amazon Local Currency?
Amazon Local Currency är en Chrome-tillägg utvecklad av Yossi Frances, och dess huvudfunktion är "Display Amazon prices in your local currency.".
Tilläggsskärmbilder
Ladda ner Amazon Local Currency-förlängningens CRX-fil
Ladda ner Amazon Local Currency-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Display Amazon prices on your local currency. Logo: "Conversion" by Delwar Hossain from the Noun Project (https://thenounproject.com/)
Grundläggande Information om Tillägg
Namn | Amazon Local Currency |
ID | hgbdbdlpcfhpindpjemalpcklpoececp |
Officiell webbadress | https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp |
Beskrivning | Display Amazon prices in your local currency. |
Filstorlek | 571 KB |
Antal Installationer | 458 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2021-08-16 |
Publiceringsdatum | 2019-02-26 |
Betyg | 3.82/5 Totalt 11 Betyg |
Utvecklare | Yossi Frances |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/yfrans/amazon-local-currency |
Stödda Språk | 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\/" ] } |