Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
Co to jest Twitch Follower Count?
Twitch Follower Count to rozszerzenie Chrome opracowane przez aranciro, a jego główną funkcją jest „Configurable Chrome extension that shows follower count when in a twitch channel page.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitch Follower Count
Pobierz pliki rozszerzeń Twitch Follower Count 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
Puts the follower count next to the channel name on Twitch. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | phpdilphbfgmibgdegclmliinkddhloe |
| Oficjalny URL | https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe |
| Opis | Configurable Chrome extension that shows follower count when in a twitch channel page. |
| Rozmiar pliku | 81.73 KB |
| Liczba instalacji | 41 |
| Aktualna Wersja | 1.0.0 |
| Ostatnia Aktualizacja | 2021-06-09 |
| Data Publikacji | 2021-06-08 |
| Deweloper | aranciro |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/aranciro/Twitch-Follower-Count-Chrome |
| Adres URL Strony Pomocy | https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues |
| Obsługiwane Języki | 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
} | |