Bandy Amazon Currency Converter
Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…
Co je Bandy Amazon Currency Converter?
Bandy Amazon Currency Converter je rozšíření Chrome vyvinuté Andrew Gorman, a jeho hlavní funkcí je „Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Bandy Amazon Currency Converter
Stáhněte si soubory rozšíření Bandy Amazon Currency Converter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves you the hassle of converting prices. How it Works Bandy retrieves latest exchange rates from an open source API and pulls the targeted currency from your Amazon Webpage. The extension then converts and updates the the webpage with the latest rate in the users selected currency. Currently, the extension only supports Amazon.co.uk users but further support for other Amazon regions will be implemented. Amazon exchange rates may differ slightly.
Základní Informace o Rozšíření
Název | Bandy Amazon Currency Converter |
ID | fbpbbjbdimmlmoejckaaeoelcgelccgm |
Oficiální URL | https://chromewebstore.google.com/detail/bandy-amazon-currency-con/fbpbbjbdimmlmoejckaaeoelcgelccgm |
Popis | Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves… |
Velikost souboru | 2.43 MB |
Počet instalací | 21 |
Aktuální Verze | 0.3 |
Poslední Aktualizace | 2020-08-18 |
Datum Vydání | 2020-06-25 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | Andrew Gorman |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/kangadrewie/AmazonCurrencyConverter |
URL Stránky Nápovědy | https://github.com/kangadrewie/AmazonCurrencyConverter |
Podporované Jazyky | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bandy Amazon Currency Converter", "version": "0.3", "background": { "scripts": [ "jquery-3.4.0.min.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.co.uk\/*" ], "js": [ "jquery-3.4.0.min.js", "content.js" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "Logo.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/example.com; object-src 'self'", "permissions": [ "storage", "background" ] } |