Twitch Prime Subscription Reminder

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

What is Twitch Prime Subscription Reminder?

Twitch Prime Subscription Reminder is a Chrome extension developed by Sylvain Giroux, and its main feature is "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used".

Extension Screenshots

screenshot

Download Twitch Prime Subscription Reminder Extension CRX File

Download Twitch Prime Subscription Reminder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Twitch Prime Subscription Reminder Twitch Prime Subscription Reminder
ID lkojkjhbgnhoepnajfllnjffcheahpco
Official URL 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
File Size 15.99 KB
Installation Count 239
Current Version 1.0.5
Last Updated 2022-09-15
Publish Date 2019-03-01
Rating 3.73/5 Total 11 Ratings
Developer Sylvain Giroux
Email [email protected]
Payment Type free
Extension Website https://github.com/spoji/Twitch-Prime-Subscription-Reminder
Help Page URL https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues
Supported Languages 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"
    ]
}