Blockchair

Block explorer and anonymous crypto portfolio tracker for Bitcoin, Ethereum, and others in your browser

Blockchairとは何ですか?

BlockchairはBlockchairによって開発されたChromeの拡張機能で、その主な機能は「Block explorer and anonymous crypto portfolio tracker for Bitcoin, Ethereum, and others in your browser」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Blockchair拡張機能のCRXファイルをダウンロード

Blockchair拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Blockchair extension provides you the fastest way to search among data stored on 17 blockchains and lets you anonymously monitor your crypto portfolio and respond fast to price changes.

— Features —

Blockchain Search
Embed the most private search engine for 17 blockchains, including Bitcoin, Ethereum, Ripple, Bitcoin Cash, Litecoin, and 12 others. It allows you to search for transactions, addresses, blocks, and even the embedded text data.
Discover all blockchains we support via link: https://blockchair.com/about

On-click Blockchain Explorer
The extension sets Blockchair as the default block explorer. This feature highlights the transactions and addresses on any page you visit. Simply click on the blue highlighted phrase to access the page on Blockchair showing you the transaction/address details.
You can disable the feature via the second toggle in the extension window. 

Crypto Price Tracker
Track prices and the 24h price change for the most popular cryptocurrencies. Select the coin in the extension icon to see their value in USD in Chrome’s top bar. The prices are showing the value of crypto in USD.

Portfolio Tracker
Blockchair allows you to anonymously and privately track the price changes of your crypto assets in one place. If your coins are scattered around different wallets and exchanges, the Portfolio tracker feature is perfect for you. It allows you to monitor the overall performance and quickly react to 24h price changes. 
Add, remove, and manage your assets by clicking on the <> button. 

--------------------------------------------------------------------------------------------------------

Download the extension today for the easiest access to blockchain data and your portfolio changes.

--------------------------------------------------------------------------------------------------------

— About privacy —
For the purpose of providing you with the search and access to specific blockchain data, crypto prices, and 24h price changes, the extension needs to be granted the following permissions:

tabs - permission to open new tabs in your browser when you search for specific blockchain information; 

activeTab - permission that allows the analysis and identification of the address and transaction hashes for the On-click Blockchain Explorer feature. We do not store, analyze, nor send this information either to our or third-party servers.

contextMenus - we add items to the context menu of the browser. You can select any phrase or a text and search for it directly in Blockchair explorer.

storage - for the local data storage of your portfolio. We do not store, analyze, nor send this information either to our or third-party servers.

For more information regarding our data collection, please review our general privacy policy before you install our add-on, available here: 
https://blockchair.com/privacy                    

拡張機能の基本情報

名前 Blockchair Blockchair
ID fhhkkooikehnkaodebbfnkinedlllcfk
公式URL https://chromewebstore.google.com/detail/blockchair/fhhkkooikehnkaodebbfnkinedlllcfk
説明 Block explorer and anonymous crypto portfolio tracker for Bitcoin, Ethereum, and others in your browser
ファイルサイズ 1.55 MB
インストール数 10,133
現在のバージョン 2.1.21
最終更新日 2023-06-08
公開日 2020-11-24
評価 3.71/5 合計 14 レビュー
開発者 Blockchair
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://blockchair.com
ヘルプページのURL https://blockchair.com/faq
プライバシーポリシーページのURL https://blockchair.com/privacy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blockchair",
    "version": "2.1.21",
    "description": "Block explorer and anonymous crypto portfolio tracker for Bitcoin, Ethereum, and others in your browser",
    "omnibox": {
        "keyword": "b"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Blockchair",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo-block-16.png",
            "32": "images\/logo-block-32.png",
            "64": "images\/logo-block-64.png",
            "128": "images\/logo-block-128.png",
            "256": "images\/logo-block-256.png",
            "512": "images\/logo-block-512.png",
            "1024": "images\/logo-block-1024.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/blockchair.com\/*",
                "https:\/\/whiskey.test\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end",
            "css": [
                "assets\/content_style.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/blockchair.com\/*",
                "https:\/\/whiskey.test\/*"
            ],
            "js": [
                "content_script_blockchair.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/logo-block-16.png",
        "32": "images\/logo-block-32.png",
        "64": "images\/logo-block-64.png",
        "128": "images\/logo-block-128.png",
        "256": "images\/logo-block-256.png",
        "512": "images\/logo-block-512.png",
        "1024": "images\/logo-block-1024.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "alarms",
        "notifications"
    ]
}