CryptoNow

Cryptocurrency price ticker for major market cap coins

What is CryptoNow?

CryptoNow is a Chrome extension developed by trm313, and its main feature is "Cryptocurrency price ticker for major market cap coins".

Extension Screenshots

screenshot

Download CryptoNow Extension CRX File

Download CryptoNow extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name CryptoNow CryptoNow
ID ggmhobkfampgidphcgdmjlkeohlaofdo
Official URL https://chrome.google.com/webstore/detail/cryptonow/ggmhobkfampgidphcgdmjlkeohlaofdo
Description Cryptocurrency price ticker for major market cap coins
File Size 414 KB
Installation Count 20
Current Version 0.0.0.1
Last Updated 2017-11-06
Publish Date 2017-11-06
Rating 5.00/5 Total 2 Ratings
Developer trm313
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}