Currency calculator
Currency calculator
什么是Currency calculator?
Currency calculator是由Eretin Oleg开发的Chrome扩展程序,该扩展的主要功能是“Currency calculator”。
扩展截图
下载Currency calculator扩展crx文件
下载Currency calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allow user to convert values between different currencies.
Key features:
- Support 5 different currencies
- Provide user with up to date currencies rates
- Allow to set default currency
- Support 2 locales: english and russian 扩展基本信息
| 名称 | |
| ID | abjmkppdokelmiilmojnbcplckdofjcj |
| 官方URL | https://chrome.google.com/webstore/detail/currency-calculator/abjmkppdokelmiilmojnbcplckdofjcj |
| 简介 | Currency calculator |
| 文件大小 | 284 KB |
| 安装次数 | 24 |
| 当前版本 | 0.1 |
| 更新时间 | 2019-03-08 |
| 上架时间 | 2019-03-08 |
| 评分 | 1.50/5 共2次评分 |
| 开发者 | Eretin Oleg |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extName__",
"version": "0.1",
"description": "__MSG_extName__",
"default_locale": "en",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon16.png",
"default_title": "__MSG_extName__",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"http:\/\/api.fixer.io\/",
"storage"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |