Twitch Prime Subscription Reminder
This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used
Co to jest Twitch Prime Subscription Reminder?
Twitch Prime Subscription Reminder to rozszerzenie Chrome opracowane przez Sylvain Giroux, a jego główną funkcją jest „This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitch Prime Subscription Reminder
Pobierz pliki rozszerzeń Twitch Prime Subscription Reminder 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
This is an alternative to the "Prime Subscription and Loot Reminder Extension" inside twitch.tv that you can enable for your favorite streamer.
Podstawowe informacje o rozszerzeniu
Nazwa | Twitch Prime Subscription Reminder |
ID | lkojkjhbgnhoepnajfllnjffcheahpco |
Oficjalny URL | https://chromewebstore.google.com/detail/twitch-prime-subscription/lkojkjhbgnhoepnajfllnjffcheahpco |
Opis | This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used |
Rozmiar pliku | 15.99 KB |
Liczba instalacji | 239 |
Aktualna Wersja | 1.0.5 |
Ostatnia Aktualizacja | 2022-09-15 |
Data Publikacji | 2019-03-01 |
Ocena | 3.73/5 Łącznie 11 Oceny |
Deweloper | Sylvain Giroux |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/spoji/Twitch-Prime-Subscription-Reminder |
Adres URL Strony Pomocy | https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Prime Subscription Reminder", "description": "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used", "version": "1.0.5", "icons": { "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "check_subscription.js" ] } ], "browser_action": { "default_icon": { "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "default_title": "Twitch Prime Subscription Reminder" }, "permissions": [ "tabs" ] } |