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.”。
扩展截图
下载BTC.com Extension for Chrome扩展crx文件
下载BTC.com Extension for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
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" } |