Twitch Prime Subscription Reminder

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

Twitch Prime Subscription Reminder क्या है?

Twitch Prime Subscription Reminder Sylvain Giroux द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitch Prime Subscription Reminder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Twitch Prime Subscription Reminder Twitch Prime Subscription Reminder
ID lkojkjhbgnhoepnajfllnjffcheahpco
आधिकारिक URL https://chromewebstore.google.com/detail/twitch-prime-subscription/lkojkjhbgnhoepnajfllnjffcheahpco
विवरण This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used
फ़ाइल का आकार 15.99 KB
स्थापना संख्या 239
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2022-09-15
प्रकाशन तिथि 2019-03-01
रेटिंग 3.73/5 कुल 11 रेटिंग्स
डेवलपर Sylvain Giroux
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/spoji/Twitch-Prime-Subscription-Reminder
सहायता पृष्ठ URL https://github.com/spoji/Twitch-Prime-Subscription-Reminder/issues
समर्थित भाषाएँ 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"
    ]
}