CryptoNow
Cryptocurrency price ticker for major market cap coins
什么是CryptoNow?
CryptoNow是由trm313开发的Chrome扩展程序,该扩展的主要功能是“Cryptocurrency price ticker for major market cap coins”。
扩展截图
下载CryptoNow扩展crx文件
下载CryptoNow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Cryptocurrency price ticker to track major market cap coins: BitCoin (BTC), Ethereum (ETH), LiteCoin (LTC), Monero (XMR), and more
Ticker includes current price (USD), as well as 24 hour change.
== Developer Notes 11/6/17 ==
Thanks for viewing our latest Chrome extension! This is a new utility that is in active development. We're happy to accept any feedback, and here is a brief roadmap of features that will soon be implemented:
Coming Soon:
- Customize list of coins to view
- Currency conversion options
- Integration with CryptoNow site to view personalized portfolio in real time
- Socket.io integration to allow real-time changes
- Optional "perma" ticker to be injected at top of web page 扩展基本信息
| 名称 | |
| ID | ggmhobkfampgidphcgdmjlkeohlaofdo |
| 官方URL | https://chrome.google.com/webstore/detail/cryptonow/ggmhobkfampgidphcgdmjlkeohlaofdo |
| 简介 | Cryptocurrency price ticker for major market cap coins |
| 文件大小 | 414 KB |
| 安装次数 | 20 |
| 当前版本 | 0.0.0.1 |
| 更新时间 | 2017-11-06 |
| 上架时间 | 2017-11-06 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | trm313 |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "CryptoNow",
"description": "Cryptocurrency price ticker for major market cap coins",
"version": "0.0.0.1",
"icons": {
"16": "img\/CryptoNow_logo_16px.png",
"48": "img\/CryptoNow_logo_48px.png",
"128": "img\/CryptoNow_logo_128px.png"
},
"background": {
"scripts": [
"event.js"
],
"persistent": false
},
"permissions": [
"https:\/\/crypto-bot-trm313.herokuapp.com\/*",
"http:\/\/localhost:3001\/*"
],
"browser_action": {
"default_title": "CryptoNow",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"css": [],
"js": [
"content.js"
]
}
]
} | |