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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" ] } |