Chrome Currency Converter
Automatically convert in-page prices to the selected currency using current rates.
Chrome Currency Converter란 무엇입니까?
Chrome Currency Converter은(는) George Papadakis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically convert in-page prices to the selected currency using current rates."입니다.
확장 프로그램 스크린샷
Chrome Currency Converter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
All-new 6.0 version! --- This extension will automatically (or not) convert prices (from major currencies) on any page to the selected currency. Features: - Whitelist or blacklist domains - Select among dozen of currencies to convert to - Detects prices in various formats - Supports 160+ currencies - Easily toggle between converted and original prices - Optionally set fee or tax % to be added extra to conversion - Quick converter (in popup) - Rates page - Handles ambiguous currencies - Many options - "100% CLEAN" AWARD from Softpedia: http://bit.ly/6cXrpR
확장 프로그램 기본 정보
이름 | Chrome Currency Converter |
ID | anbfhidldjknonaihbalghlebaijealk |
공식 URL | https://chromewebstore.google.com/detail/chrome-currency-converter/anbfhidldjknonaihbalghlebaijealk |
설명 | Automatically convert in-page prices to the selected currency using current rates. |
파일 크기 | 343 KB |
설치 횟수 | 56,762 |
현재 버전 | 6.8.17 |
최근 업데이트 | 2021-11-18 |
출시 날짜 | 2020-06-05 |
평점 | 3.58/5 총 1496 개의 평점 |
개발자 | George Papadakis |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.twitter.com/phaistonian |
개인정보 보호 정책 페이지 URL | https://www.bestprice.gr/assistant/terms |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Currency Converter", "short_name": "CCC", "description": "Automatically convert in-page prices to the selected currency using current rates.", "version": "6.8.17", "author": "George Papadakis", "commands": { "toggle": { "suggested_key": { "default": "Ctrl+Shift+C", "mac": "MacCtrl+Shift+C" }, "description": "Toggle CCC conversion" }, "rates": { "suggested_key": { "default": "Ctrl+Shift+T", "mac": "MacCtrl+Shift+T" }, "description": "Current rates" } }, "manifest_version": 2, "background": { "scripts": [ "dist\/background.js" ] }, "content_scripts": [ { "all_frames": false, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ "dist\/script.js" ], "run_at": "document_start" } ], "options_ui": { "page": "html\/options.html" }, "web_accessible_resources": [ "html\/test.html", "html\/*", "assets\/*" ], "content_security_policy": "script-src 'unsafe-eval' 'self' https:\/\/www.google-analytics.com https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com; object-src 'self';", "browser_action": { "default_icon": { "16": "assets\/browser-action\/16.png", "24": "assets\/browser-action\/24.png", "32": "assets\/browser-action\/32.png" }, "default_title": "Chrome Currency Converter", "default_popup": "html\/popup.html" }, "icons": { "16": "assets\/icon\/16.png", "48": "assets\/icon\/48.png", "128": "assets\/icon\/128.png" } } |