Convert (crypto)currency

Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.

Convert (crypto)currencyคืออะไร?

Convert (crypto)currency เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bhspiers และคุณลักษณะหลักของมันคือ "Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Convert (crypto)currency

ดาวน์โหลดไฟล์ส่วนขยาย Convert (crypto)currency ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Highlight a value (or just right-click it), then select the crypto/fiat currencies to convert between.
Result shown in a simple tooltip.
Enter your own list of fiat and/or crypto currency symbols in the settings.
You can also convert fiat to fiat or crypto to crypto.
Works on any website!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Convert (crypto)currency Convert (crypto)currency
ID gpaeckfcfjodafjbnjhlgfplmgdanico
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/convert-cryptocurrency/gpaeckfcfjodafjbnjhlgfplmgdanico
คำอธิบาย Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.
ขนาดไฟล์ 21.7 KB
จำนวนการติดตั้ง 13
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2022-05-04
วันที่เผยแพร่ 2020-07-04
ผู้พัฒนา bhspiers
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Convert (crypto)currency",
    "description": "Context menu option to convert selected crypto\/fiat value - displays the result in a simple tooltip.",
    "version": "1.4",
    "icons": {
        "128": "exchange.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "api.js",
                "crypto-context.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api.coinbase.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}