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'est-ce que Twitch Prime Subscription Reminder ?

Twitch Prime Subscription Reminder est une extension Chrome développée par Sylvain Giroux, et sa fonction principale est "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitch Prime Subscription Reminder

Téléchargez les fichiers d'extension Twitch Prime Subscription Reminder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This is an alternative to the "Prime Subscription and Loot Reminder Extension" inside twitch.tv that you can enable for your favorite streamer.                    

Informations de Base sur l'Extension

Nom Twitch Prime Subscription Reminder Twitch Prime Subscription Reminder
ID lkojkjhbgnhoepnajfllnjffcheahpco
URL Officiel https://chromewebstore.google.com/detail/twitch-prime-subscription/lkojkjhbgnhoepnajfllnjffcheahpco
Description This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used
Taille du Fichier 15.99 KB
Nombre d'Installations 239
Version Actuelle 1.0.5
Dernière Mise à Jour 2022-09-15
Date de Publication 2019-03-01
Évaluation 3.73/5 Total 11 Évaluations
Développeur Sylvain Giroux
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/spoji/Twitch-Prime-Subscription-Reminder
URL de la Page d'Aide https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues
Langues Prises en Charge 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"
    ]
}