BTC Convert Extension
A simple BTC currency converter
BTC Convert Extensionคืออะไร?
BTC Convert Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pieter Bee และคุณลักษณะหลักของมันคือ "A simple BTC currency converter"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BTC Convert Extension
ดาวน์โหลดไฟล์ส่วนขยาย BTC Convert Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a simple right mouse click menu item that converts dollars/euros to BTC and vice versa. The calculation is made via the blockchain.info API (https://blockchain.info/tobtc) It can also convert EUR/USD in an input field to BTC and vice versa. DISCLAIMER: I made this extension as a hobby. So I'm not responsible for any calculation errors! Using this converter is at your own risk... Use it wise and always double check! ;)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | BTC Convert Extension |
ID | akndiebokmpldboapenhfcbaibjebibc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/btc-convert-extension/akndiebokmpldboapenhfcbaibjebibc |
คำอธิบาย | A simple BTC currency converter |
ขนาดไฟล์ | 45.87 KB |
จำนวนการติดตั้ง | 128 |
เวอร์ชันปัจจุบัน | 0.12 |
อัปเดตครั้งล่าสุด | 2018-01-11 |
วันที่เผยแพร่ | 2018-01-11 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Pieter Bee |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "BTC Convert Extension", "description": "A simple BTC currency converter", "version": "0.12", "browser_action": { "default_icon": "ext-icon_128.png" }, "permissions": [ "contextMenus" ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "ext-icon_16.png", "48": "ext-icon_48.png", "128": "ext-icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "all_frames": false } ] } |