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文件
下载Chrome Currency Converter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| 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"
}
} | |