Twitch Prime Subscription Reminder
This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used
O que é Twitch Prime Subscription Reminder?
Twitch Prime Subscription Reminder é uma extensão do Chrome desenvolvida por Sylvain Giroux, e sua principal característica é "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitch Prime Subscription Reminder
Baixe arquivos de extensão Twitch Prime Subscription Reminder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This is an alternative to the "Prime Subscription and Loot Reminder Extension" inside twitch.tv that you can enable for your favorite streamer.
Informações Básicas da Extensão
Nome | Twitch Prime Subscription Reminder |
ID | lkojkjhbgnhoepnajfllnjffcheahpco |
URL Oficial | https://chromewebstore.google.com/detail/twitch-prime-subscription/lkojkjhbgnhoepnajfllnjffcheahpco |
Descrição | This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used |
Tamanho do Arquivo | 15.99 KB |
Contagem de Instalações | 239 |
Versão Atual | 1.0.5 |
Última Atualização | 2022-09-15 |
Data de Publicação | 2019-03-01 |
Classificação | 3.73/5 Total de 11 Avaliações |
Desenvolvedor | Sylvain Giroux |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/spoji/Twitch-Prime-Subscription-Reminder |
URL da Página de Ajuda | https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues |
Idiomas Suportados | 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" ] } |