BTC Convert Extension

A simple BTC currency converter

BTC Convert Extension là gì?

BTC Convert Extension là một tiện ích mở rộng Chrome được phát triển bởi Pieter Bee, và tính năng chính của nó là "A simple BTC currency converter".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng BTC Convert Extension

Tải xuống các tệp mở rộng BTC Convert Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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! ;)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BTC Convert Extension BTC Convert Extension
ID akndiebokmpldboapenhfcbaibjebibc
URL Chính Thức https://chromewebstore.google.com/detail/btc-convert-extension/akndiebokmpldboapenhfcbaibjebibc
Mô tả A simple BTC currency converter
Kích Thước Tệp 45.87 KB
Số Lần Cài Đặt 128
Phiên Bản Hiện Tại 0.12
Cập Nhật Lần Cuối 2018-01-11
Ngày Phát Hành 2018-01-11
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Pieter Bee
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}