Coinbase Enhancement Suite

Adds missing features to Coinbase website.

Was ist Coinbase Enhancement Suite?

Coinbase Enhancement Suite ist eine Chrome-Erweiterung, die von Mike Tsao entwickelt wurde, und ihr Hauptmerkmal ist "Adds missing features to Coinbase website.".

Erweiterungsscreenshots

screenshot

Coinbase Enhancement Suite-Erweiterungs-CRX-Datei herunterladen

Laden Sie Coinbase Enhancement Suite-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

                        Fixes various bugs in the Coinbase website. Actually, at the moment fixes only one.

On the transactions page, tells you the USD/BTC price. Today this information is missing from transaction confirmations, but it's not provided. This information is calculated from the total price, the BTC figure, a $0.15 bank fee, and a 1.0% Coinbase fee. If these values change, the calculation will be incorrect.

Coinbase is not affiliated with me or this product.                    

Grundlegende Informationen zur Erweiterung

Name Coinbase Enhancement Suite Coinbase Enhancement Suite
ID ihmmdkcakjebheclflinnabikkhdgpdl
Offizielle URL https://chromewebstore.google.com/detail/coinbase-enhancement-suit/ihmmdkcakjebheclflinnabikkhdgpdl
Beschreibung Adds missing features to Coinbase website.
Dateigröße 2.96 KB
Installationsanzahl 299
Aktuelle Version 1.0
Letztes Update 2013-08-02
Veröffentlichungsdatum 2013-08-01
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Mike Tsao
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coinbase Enhancement Suite",
    "description": "Adds missing features to Coinbase website.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/coinbase.com\/transactions\/*"
            ],
            "js": [
                "fix_transactions.js"
            ],
            "run_at": "document_end"
        }
    ]
}