Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
Что такое Twitch Follower Count?
Twitch Follower Count - это расширение Chrome, разработанное aranciro, и его основная функция - "Configurable Chrome extension that shows follower count when in a twitch channel page.".
Снимки экрана расширения
Скачать файл CRX расширения Twitch Follower Count
Скачайте файлы расширений Twitch Follower Count в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Puts the follower count next to the channel name on Twitch.
Основная информация о расширении
Название | Twitch Follower Count |
ID | phpdilphbfgmibgdegclmliinkddhloe |
Официальный URL | https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe |
Описание | Configurable Chrome extension that shows follower count when in a twitch channel page. |
Размер файла | 81.73 KB |
Количество установок | 41 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2021-06-09 |
Дата публикации | 2021-06-08 |
Разработчик | aranciro |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/aranciro/Twitch-Follower-Count-Chrome |
URL страницы помощи | https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Follower Count", "version": "1.0.0", "description": "Configurable Chrome extension that shows follower count when in a twitch channel page.", "icons": { "16": "res\/twitch-follower-count-icon-16x16.png", "32": "res\/twitch-follower-count-icon-32x32.png", "48": "res\/twitch-follower-count-icon-48x48.png", "64": "res\/twitch-follower-count-icon-64x64.png", "128": "res\/twitch-follower-count-icon-128x128.png" }, "options_page": "options\/index.html", "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*.twitch.tv\/*", "https:\/\/*.twitch.tv\/*" ], "js": [ "twitch-follower-count.user.js" ], "css": [ "twitch-follower-count.css" ] } ], "manifest_version": 3 } |