Conveuro

Instantly convert currencies with a simple text selection.

Conveuroคืออะไร?

Conveuro เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hristiyan Dodov และคุณลักษณะหลักของมันคือ "Instantly convert currencies with a simple text selection."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Conveuro

ดาวน์โหลดไฟล์ส่วนขยาย 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 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:\/\/*\/*"
            ]
        }
    ]
}