Conveuro

Instantly convert currencies with a simple text selection.

Conveuro란 무엇입니까?

Conveuro은(는) Hristiyan Dodov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instantly convert currencies with a simple text selection."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Conveuro 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        [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 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:\/\/*\/*"
            ]
        }
    ]
}