Amazon Local Currency
Display Amazon prices in your local currency.
Amazon Local Currency란 무엇입니까?
Amazon Local Currency은(는) Yossi Frances에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display Amazon prices in your local currency."입니다.
확장 프로그램 스크린샷
Amazon Local Currency 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Display Amazon prices on your local currency. Logo: "Conversion" by Delwar Hossain from the Noun Project (https://thenounproject.com/)
확장 프로그램 기본 정보
이름 | Amazon Local Currency |
ID | hgbdbdlpcfhpindpjemalpcklpoececp |
공식 URL | https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp |
설명 | Display Amazon prices in your local currency. |
파일 크기 | 571 KB |
설치 횟수 | 458 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2021-08-16 |
출시 날짜 | 2019-02-26 |
평점 | 3.82/5 총 11 개의 평점 |
개발자 | Yossi Frances |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/yfrans/amazon-local-currency |
지원되는 언어 | 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\/" ] } |