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 là gì?
Bandy Amazon Currency Converter là một tiện ích mở rộng Chrome được phát triển bởi Andrew Gorman, và tính năng chính của nó là "Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bandy Amazon Currency Converter
Tải xuống các tệp mở rộng Bandy Amazon Currency Converter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bandy Amazon Currency Converter |
ID | fbpbbjbdimmlmoejckaaeoelcgelccgm |
URL Chính Thức | https://chromewebstore.google.com/detail/bandy-amazon-currency-con/fbpbbjbdimmlmoejckaaeoelcgelccgm |
Mô tả | Bandy is an open sourced currency converter for Amazon.co.uk. Bandy fetches the latest rates from openexchangerates.org and saves… |
Kích Thước Tệp | 2.43 MB |
Số Lần Cài Đặt | 21 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2020-08-18 |
Ngày Phát Hành | 2020-06-25 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Andrew Gorman |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kangadrewie/AmazonCurrencyConverter |
URL Trang Trợ Giúp | https://github.com/kangadrewie/AmazonCurrencyConverter |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |