BTC.com Extension for Chrome
An extension that provides data of bitcoin.
Was ist BTC.com Extension for Chrome?
BTC.com Extension for Chrome ist eine Chrome-Erweiterung, die von btc.com entwickelt wurde, und ihr Hauptmerkmal ist "An extension that provides data of bitcoin.".
Erweiterungsscreenshots
BTC.com Extension for Chrome-Erweiterungs-CRX-Datei herunterladen
Laden Sie BTC.com Extension for Chrome-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | bbliigjegnkdnolaabpfdoimdmncjdca |
Offizielle URL | https://chrome.google.com/webstore/detail/btccom-extension-for-chro/bbliigjegnkdnolaabpfdoimdmncjdca |
Beschreibung | An extension that provides data of bitcoin. |
Dateigröße | 1.33 MB |
Installationsanzahl | 4,000 |
Aktuelle Version | 1.2.4 |
Letztes Update | 2019-07-11 |
Veröffentlichungsdatum | 2019-07-11 |
Bewertung | 3.98/5 Insgesamt 52 Bewertungen |
Entwickler | btc.com |
Zahlungsart | free |
Erweiterungswebsite | https://btc.com |
Hilfeseite URL | https://btc.com |
Unterstützte Sprachen | 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" } |