Crypto Tracker

Current price of your favorite crypto currency. Powered by CoinMarketCap.

Was ist Crypto Tracker?

Crypto Tracker ist eine Chrome-Erweiterung, die von http://underscorehao.net entwickelt wurde, und ihr Hauptmerkmal ist "Current price of your favorite crypto currency. Powered by CoinMarketCap.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Crypto Tracker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Crypto Tracker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension displays the current price of your favorite cryptocurrency on the badge icon in real time. There's also a popup for additional information and options page where you can choose your favorite cryptocurrency (Top 50 from CoinMarketCap) and the current rate in fiat of your choosing.

New in 0.0.9:
* Fixed some bugs
* Show double precision price on the badge and popup.
* Changes to the Options screen.
* New light theme which can be turned on from the Options screen.

The current road map for version 0.1.0 includes:
* Desktop alerts when the price hits a certain threshold

If you have any suggestions or feedback feel free to contact me. Code available on github - https://github.com/underscoreHao/crypto-tracker

If you find this extension helpful you can donate:
BTC: 1JXh8r3WTQt8dN8kc2rLzRNSEQafSBNHpk

ETH: 0x56F8584849568D5F7C2BB31DdC8552a1b4515F63

OMG: 0x56F8584849568D5F7C2BB31DdC8552a1b4515F63

LTC: LNWMGeGzy9fDCbfZLvr6swLYxmuA7LTXex                    

Grundlegende Informationen zur Erweiterung

Name Crypto Tracker Crypto Tracker
ID oclnggnhbahdbgjoldcboibocfbligpi
Offizielle URL https://chrome.google.com/webstore/detail/crypto-tracker/oclnggnhbahdbgjoldcboibocfbligpi
Beschreibung Current price of your favorite crypto currency. Powered by CoinMarketCap.
Dateigröße 115 KB
Installationsanzahl 140
Aktuelle Version 0.0.9
Letztes Update 2018-03-29
Veröffentlichungsdatum 2018-03-29
Bewertung 2.25/5 Insgesamt 4 Bewertungen
Entwickler http://underscorehao.net
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crypto Tracker",
    "short_name": "Crypto ticker",
    "version": "0.0.9",
    "manifest_version": 2,
    "description": "Current price of your favorite crypto currency. Powered by CoinMarketCap.",
    "icons": {
        "16": "icons\/[email protected]",
        "48": "icons\/[email protected]",
        "128": "icons\/[email protected]"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/api.coinmarketcap.com\/*",
        "alarms",
        "storage",
        "notifications"
    ],
    "options_page": "src\/options\/options.html",
    "browser_action": {
        "default_icon": "icons\/[email protected]",
        "default_title": "Crypto Tracker",
        "default_popup": "src\/popup\/popup.html"
    }
}