Twitch Prime Subscription Reminder

This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used

Cos'è Twitch Prime Subscription Reminder?

Twitch Prime Subscription Reminder è un'estensione di Chrome sviluppata da Sylvain Giroux, e la sua funzione principale è "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitch Prime Subscription Reminder

Scarica i file di estensione Twitch Prime Subscription Reminder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Twitch Prime Subscription Reminder Twitch Prime Subscription Reminder
ID lkojkjhbgnhoepnajfllnjffcheahpco
URL Ufficiale https://chromewebstore.google.com/detail/twitch-prime-subscription/lkojkjhbgnhoepnajfllnjffcheahpco
Descrizione This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used
Dimensione del File 15.99 KB
Conteggio Installazioni 239
Versione Corrente 1.0.5
Ultimo Aggiornamento 2022-09-15
Data di Pubblicazione 2019-03-01
Valutazione 3.73/5 Totale 11 Valutazioni
Sviluppatore Sylvain Giroux
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/spoji/Twitch-Prime-Subscription-Reminder
URL della Pagina di Aiuto https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues
Lingue Supportate 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"
    ]
}