BTC.com Extension for Chrome
An extension that provides data of bitcoin.
Co to jest BTC.com Extension for Chrome?
BTC.com Extension for Chrome to rozszerzenie Chrome opracowane przez btc.com, a jego główną funkcją jest „An extension that provides data of bitcoin.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia BTC.com Extension for Chrome
Pobierz pliki rozszerzeń BTC.com Extension for Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | bbliigjegnkdnolaabpfdoimdmncjdca |
Oficjalny URL | https://chrome.google.com/webstore/detail/btccom-extension-for-chro/bbliigjegnkdnolaabpfdoimdmncjdca |
Opis | An extension that provides data of bitcoin. |
Rozmiar pliku | 1.33 MB |
Liczba instalacji | 4,000 |
Aktualna Wersja | 1.2.4 |
Ostatnia Aktualizacja | 2019-07-11 |
Data Publikacji | 2019-07-11 |
Ocena | 3.98/5 Łącznie 52 Oceny |
Deweloper | btc.com |
Typ Płatności | free |
Strona Rozszerzenia | https://btc.com |
Adres URL Strony Pomocy | https://btc.com |
Obsługiwane Języki | 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" } |