Amazon Local Currency
Display Amazon prices in your local currency.
What is Amazon Local Currency?
Amazon Local Currency is a Chrome extension developed by Yossi Frances, and its main feature is "Display Amazon prices in your local currency.".
Extension Screenshots
Download Amazon Local Currency Extension CRX File
Download Amazon Local Currency extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Display Amazon prices on your local currency. Logo: "Conversion" by Delwar Hossain from the Noun Project (https://thenounproject.com/)
Extension Basic Information
Name | Amazon Local Currency |
ID | hgbdbdlpcfhpindpjemalpcklpoececp |
Official URL | https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp |
Description | Display Amazon prices in your local currency. |
File Size | 571 KB |
Installation Count | 458 |
Current Version | 1.0.3 |
Last Updated | 2021-08-16 |
Publish Date | 2019-02-26 |
Rating | 3.82/5 Total 11 Ratings |
Developer | Yossi Frances |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/yfrans/amazon-local-currency |
Supported Languages | 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\/" ] } |