Conveuro
Instantly convert currencies with a simple text selection.
什么是Conveuro?
Conveuro是由Hristiyan Dodov开发的Chrome扩展程序,该扩展的主要功能是“Instantly convert currencies with a simple text selection.”。
扩展截图
下载Conveuro扩展crx文件
下载Conveuro扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
[UPDATE 03 Dec 2023]: Fixed currency data not showing. --- Conveuro allows you to convert currencies directly on the page you're currently at by simply selecting what you want to convert. Features: - 168 currencies supported - Currency detection algorithm - Accurate exchange rates data - Instant on-page conversion - Easy conversion in extension popup - Multiple and draggable conversion boxes - Free Details: If you're on eBay and you see an item with the text "US $34.99", you can select that text and immediately see the price in your chosen currencies. If that doesn't work for some reason, you can click the extension popup and type it there. Unlike other converters, Conveuro can detect the currency, so you don't have to explicitly select it. You can type "25 thousand canadian dollars", for example, and get exactly what you're looking for. All you have to do is open the popup, set what currencies you're interested in and preferably put the most important ones at the beginning.
扩展基本信息
名称 | Conveuro |
ID | hchlbehbbfdiogoeigibfgjpcmhogaop |
官方URL | https://chromewebstore.google.com/detail/conveuro/hchlbehbbfdiogoeigibfgjpcmhogaop |
简介 | Instantly convert currencies with a simple text selection. |
文件大小 | 608 KB |
安装次数 | 202 |
当前版本 | 1.2.3 |
更新时间 | 2023-12-04 |
上架时间 | 2018-09-05 |
评分 | 4.30/5 共10次评分 |
开发者 | Hristiyan Dodov |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/hdodov/conveuro |
帮助页面URL | https://github.com/hdodov/conveuro/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Conveuro", "version": "1.2.3", "author": "Hristiyan Dodov", "description": "Instantly convert currencies with a simple text selection.", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "storage", "https:\/\/api.conveuro.com\/" ], "web_accessible_resources": [ "chrome-extension:\/\/hchlbehbbfdiogoeigibfgjpcmhogaop\/**\/*", "content-script\/**\/*", "event-page\/**\/*", "popup\/**\/*", "img\/**\/*" ], "browser_action": { "default_popup": "popup\/index.html" }, "background": { "scripts": [ "event-page\/js\/script.js" ], "persistent": true }, "content_scripts": [ { "css": [ "content-script\/css\/main.css" ], "js": [ "content-script\/js\/script.js" ], "matches": [ "file:\/\/\/*", "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |