Bitcoin Price Ticker & Alert
Show the Bitcoin ticker price and set an alert so that the browser icon will flash when the alert price is passed.
Что такое Bitcoin Price Ticker & Alert?
Bitcoin Price Ticker & Alert - это расширение Chrome, разработанное happy elephant web development, и его основная функция - "Show the Bitcoin ticker price and set an alert so that the browser icon will flash when the alert price is passed.".
Снимки экрана расширения
Скачать файл CRX расширения Bitcoin Price Ticker & Alert
Скачайте файлы расширений Bitcoin Price Ticker & Alert в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Display Bitcoin ticker price and set an alert that will flash the Bitcoin browser icon when the alert price is passed. Price updates about once per minute. Price gains and losses over the past one hour are signified by the color of the browser icon badge. It will be green for gains, and red for losses. Clicking current price will also copy it to your clipboard. Latest price is provided by CoinGecko. Buy me a beer? BTC: 1LpkKxcJwbRCyzg3pQd4NjxdSwXezuLpRC
Основная информация о расширении
Название | Bitcoin Price Ticker & Alert |
ID | dhdenoagjkmmdiacnmainlinoaoacfmb |
Официальный URL | https://chromewebstore.google.com/detail/bitcoin-price-ticker-aler/dhdenoagjkmmdiacnmainlinoaoacfmb |
Описание | Show the Bitcoin ticker price and set an alert so that the browser icon will flash when the alert price is passed. |
Размер файла | 2.67 MB |
Количество установок | 307 |
Текущая Версия | 0.0.4 |
Последнее Обновление | 2019-11-11 |
Дата публикации | 2019-11-10 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | happy elephant web development |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://happyelephantwebdevelopment.wordpress.com/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bitcoin Price Ticker & Alert", "short_name": "Bitcoin Price Ticker & Alert", "version": "0.0.4", "manifest_version": 2, "description": "Show the Bitcoin ticker price and set an alert so that the browser icon will flash when the alert price is passed.", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js", "scripts\/popup.js" ] }, "permissions": [ "storage", "https:\/\/chrome-coin-alert-4.glitch.me\/*", "https:\/\/api.coingecko.com\/*", "http:\/\/api.ipstack.com\/*", "http:\/\/jsonip.com\/*", "https:\/\/jsonip.com\/*" ], "options_ui": { "page": "options.html", "chrome_style": true }, "omnibox": { "keyword": "OMNIBOX-KEYWORD" }, "browser_action": { "default_icon": { "19": "images\/browser-icon-19.png", "38": "images\/browser-icon-38.png" }, "default_title": "Bitcoin Price Ticker & Alert", "default_popup": "popup.html" }, "web_accessible_resources": [ "images\/icon-48.png", "images\/*.png" ] } |