Coinbase Enhancement Suite

Adds missing features to Coinbase website.

Co to jest Coinbase Enhancement Suite?

Coinbase Enhancement Suite to rozszerzenie Chrome opracowane przez Mike Tsao, a jego główną funkcją jest „Adds missing features to Coinbase website.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Coinbase Enhancement Suite

Pobierz pliki rozszerzeń Coinbase Enhancement Suite w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Coinbase Enhancement Suite Coinbase Enhancement Suite
ID ihmmdkcakjebheclflinnabikkhdgpdl
Oficjalny URL https://chromewebstore.google.com/detail/coinbase-enhancement-suit/ihmmdkcakjebheclflinnabikkhdgpdl
Opis Adds missing features to Coinbase website.
Rozmiar pliku 2.96 KB
Liczba instalacji 299
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-08-02
Data Publikacji 2013-08-01
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Mike Tsao
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}