BTC.com Extension for Chrome

An extension that provides data of bitcoin.

BTC.com Extension for Chrome란 무엇입니까?

BTC.com Extension for Chrome은(는) btc.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that provides data of bitcoin."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

BTC.com Extension for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The quickest way to view bitcoin data, including blockchain information and global price. By using BTC.com extension, it's so easy to be with bitcoin and blockchain.

Github: https://github.com/btccom/chrome_extension                    

확장 프로그램 기본 정보

이름 BTC.com Extension for Chrome BTC.com Extension for Chrome
ID bbliigjegnkdnolaabpfdoimdmncjdca
공식 URL https://chrome.google.com/webstore/detail/btccom-extension-for-chro/bbliigjegnkdnolaabpfdoimdmncjdca
설명 An extension that provides data of bitcoin.
파일 크기 1.33 MB
설치 횟수 4,000
현재 버전 1.2.4
최근 업데이트 2019-07-11
출시 날짜 2019-07-11
평점 3.98/5 총 52 개의 평점
개발자 btc.com
결제 유형 free
확장 프로그램 웹 사이트 https://btc.com
도움말 페이지 URL https://btc.com
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_desc__",
    "default_locale": "en",
    "author": "BTC.com",
    "version": "1.2.4",
    "browser_action": {
        "default_popup": "components\/popup\/popup.html",
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "build\/background.bundle.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "components\/lookup\/images\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "components\/lookup\/style.css"
            ],
            "js": [
                "components\/lookup\/jquery.min.js",
                "components\/lookup\/bitcore.min.js",
                "build\/lookup.bundle.js",
                "components\/lookup\/tool.js"
            ]
        }
    ],
    "options_page": "components\/option\/option.html"
}