Twitch Prime Subscription Reminder
This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used
¿Qué es Twitch Prime Subscription Reminder?
Twitch Prime Subscription Reminder es una extensión de Chrome desarrollada por Sylvain Giroux, y su función principal es "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Prime Subscription Reminder
Descarga archivos de extensión Twitch Prime Subscription Reminder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
This is an alternative to the "Prime Subscription and Loot Reminder Extension" inside twitch.tv that you can enable for your favorite streamer.
Información Básica de la Extensión
Nombre | Twitch Prime Subscription Reminder |
ID | lkojkjhbgnhoepnajfllnjffcheahpco |
URL Oficial | https://chromewebstore.google.com/detail/twitch-prime-subscription/lkojkjhbgnhoepnajfllnjffcheahpco |
Descripción | This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used |
Tamaño del Archivo | 15.99 KB |
Cantidad de Instalaciones | 239 |
Versión Actual | 1.0.5 |
Última Actualización | 2022-09-15 |
Fecha de Publicación | 2019-03-01 |
Calificación | 3.73/5 Total de 11 Calificaciones |
Desarrollador | Sylvain Giroux |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/spoji/Twitch-Prime-Subscription-Reminder |
URL de la Página de Ayuda | https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues |
Idiomas Soportados | 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" ] } |