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…
Bandy Amazon Currency Converterとは何ですか?
Bandy Amazon Currency ConverterはAndrew Gormanによって開発されたChromeの拡張機能で、その主な機能は「Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…」です。
拡張機能のスクリーンショット
Bandy Amazon Currency Converter拡張機能のCRXファイルをダウンロード
Bandy Amazon Currency Converter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Bandy Amazon Currency Converter |
ID | fbpbbjbdimmlmoejckaaeoelcgelccgm |
公式URL | https://chromewebstore.google.com/detail/bandy-amazon-currency-con/fbpbbjbdimmlmoejckaaeoelcgelccgm |
説明 | Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves… |
ファイルサイズ | 2.43 MB |
インストール数 | 21 |
現在のバージョン | 0.3 |
最終更新日 | 2020-08-18 |
公開日 | 2020-06-25 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Andrew Gorman |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/kangadrewie/AmazonCurrencyConverter |
ヘルプページのURL | https://github.com/kangadrewie/AmazonCurrencyConverter |
対応言語 | 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" ] } |