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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sylvain Giroux, και η κύρια λειτουργία του είναι "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Twitch Prime Subscription Reminder

Λήψη αρχείων επέκτασης Twitch Prime Subscription Reminder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}