Currency Converter
This extension allows you to convert currencies on the page. Highlight any number on the page and press 'e' to see the conversion.
Currency Converter란 무엇입니까?
Currency Converter은(는) Austin Freel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to convert currencies on the page. Highlight any number on the page and press 'e' to see the conversion."입니다.
확장 프로그램 스크린샷
Currency Converter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Highlight any value and see the conversion on the page! A tool for quickly converting foreign currency values. When traveling, a lot of sites will list prices in the foreign currency, and it can be a bit of a pain to look up all the conversions yourself. With this extension, you can just highlight the value you want to see the exchange rate for and it will appear. Exchange between any two currencies by clicking the icon in your Chrome toolbar!
확장 프로그램 기본 정보
이름 | |
ID | imnafojoiflogdnhojpbllndkehmadhj |
공식 URL | https://chrome.google.com/webstore/detail/currency-converter/imnafojoiflogdnhojpbllndkehmadhj |
설명 | This extension allows you to convert currencies on the page. Highlight any number on the page and press 'e' to see the conversion. |
파일 크기 | 70.69 KB |
설치 횟수 | 183 |
현재 버전 | 0.0.0.6 |
최근 업데이트 | 2017-04-12 |
출시 날짜 | 2017-04-12 |
평점 | 3.24/5 총 17 개의 평점 |
개발자 | Austin Freel |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Currency Converter", "description": "This extension allows you to convert currencies on the page. Highlight any number on the page and press 'e' to see the conversion.", "version": "0.0.0.6", "background": { "scripts": [ "externals\/jquery-3.1.0.min.js", "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "externals\/jquery-3.1.0.min.js", "content-script.js" ] } ], "browser_action": { "default_icon": "images\/icon128off.png", "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "web_accessible_resources": [ "css\/main.css" ], "permissions": [ "tabs" ] } |