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 je Twitch Prime Subscription Reminder?

Twitch Prime Subscription Reminder je rozšíření Chrome vyvinuté Sylvain Giroux, a jeho hlavní funkcí je „This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Twitch Prime Subscription Reminder

Stáhněte si soubory rozšíření Twitch Prime Subscription Reminder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Twitch Prime Subscription Reminder Twitch Prime Subscription Reminder
ID lkojkjhbgnhoepnajfllnjffcheahpco
Oficiální URL https://chromewebstore.google.com/detail/twitch-prime-subscription/lkojkjhbgnhoepnajfllnjffcheahpco
Popis This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used
Velikost souboru 15.99 KB
Počet instalací 239
Aktuální Verze 1.0.5
Poslední Aktualizace 2022-09-15
Datum Vydání 2019-03-01
Hodnocení 3.73/5 Celkem 11 Hodnocení
Vývojář Sylvain Giroux
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/spoji/Twitch-Prime-Subscription-Reminder
URL Stránky Nápovědy https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues
Podporované Jazyky 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"
    ]
}