CryptoNow
Cryptocurrency price ticker for major market cap coins
Cos'è CryptoNow?
CryptoNow è un'estensione di Chrome sviluppata da trm313, e la sua funzione principale è "Cryptocurrency price ticker for major market cap coins".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CryptoNow
Scarica i file di estensione CryptoNow in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ggmhobkfampgidphcgdmjlkeohlaofdo |
URL Ufficiale | https://chrome.google.com/webstore/detail/cryptonow/ggmhobkfampgidphcgdmjlkeohlaofdo |
Descrizione | Cryptocurrency price ticker for major market cap coins |
Dimensione del File | 414 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 0.0.0.1 |
Ultimo Aggiornamento | 2017-11-06 |
Data di Pubblicazione | 2017-11-06 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | trm313 |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |