Coinbase Enhancement Suite

Adds missing features to Coinbase website.

Что такое Coinbase Enhancement Suite?

Coinbase Enhancement Suite - это расширение Chrome, разработанное Mike Tsao, и его основная функция - "Adds missing features to Coinbase website.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Coinbase Enhancement Suite

Скачайте файлы расширений Coinbase Enhancement Suite в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Coinbase Enhancement Suite Coinbase Enhancement Suite
ID ihmmdkcakjebheclflinnabikkhdgpdl
Официальный URL https://chromewebstore.google.com/detail/coinbase-enhancement-suit/ihmmdkcakjebheclflinnabikkhdgpdl
Описание Adds missing features to Coinbase website.
Размер файла 2.96 KB
Количество установок 299
Текущая Версия 1.0
Последнее Обновление 2013-08-02
Дата публикации 2013-08-01
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Mike Tsao
Тип оплаты free
Поддерживаемые языки 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"
        }
    ]
}