Bitcoin Address Lookup
Get instant balance of any bitcoin address on any webpage. Hold the left alt-key and click or select the address to get balance.
Что такое Bitcoin Address Lookup?
Bitcoin Address Lookup - это расширение Chrome, разработанное Eduard Karpa, и его основная функция - "Get instant balance of any bitcoin address on any webpage. Hold the left alt-key and click or select the address to get balance.".
Снимки экрана расширения
Скачать файл CRX расширения Bitcoin Address Lookup
Скачайте файлы расширений Bitcoin Address Lookup в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Get instant balance of any bitcoin address on any web-page. Hold the left alt-key and click or select the address to get balance You will get current balance of the address and total number received and sent bitcoins.
Основная информация о расширении
Название | |
ID | lllihajjkapokmiogohflioedecpkedc |
Официальный URL | https://chrome.google.com/webstore/detail/bitcoin-address-lookup/lllihajjkapokmiogohflioedecpkedc |
Описание | Get instant balance of any bitcoin address on any webpage. Hold the left alt-key and click or select the address to get balance. |
Размер файла | 291 KB |
Количество установок | 171 |
Текущая Версия | 1.0.0.2 |
Последнее Обновление | 2018-11-29 |
Дата публикации | 2018-11-29 |
Рейтинг | 4.50/5 Всего 2 оценок |
Разработчик | Eduard Karpa |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bitcoin Address Lookup", "version": "1.0.0.2", "description": "Get instant balance of any bitcoin address on any webpage. Hold the left alt-key and click or select the address to get balance.", "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "64": "\/images\/icon64.png", "128": "\/images\/icon128.png" }, "background": { "scripts": [ "script\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/content.css" ], "js": [ "script\/contentScript.js" ] } ], "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*", "contentSettings" ] } |