Twitch Channel Points Auto-Clicker

Automatically claims Twitch channel watch rewards.

Τι είναι το Twitch Channel Points Auto-Clicker;

Το Twitch Channel Points Auto-Clicker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Francis Rhee, και η κύρια λειτουργία του είναι "Automatically claims Twitch channel watch rewards.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Twitch Channel Points Auto-Clicker

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

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

                        Have you ever been in a different tab or been away while leaving a stream on, and came back to the stream realizing you could've claimed your watch reward a long time ago? This extension allows you to sit back and focus your attention on other things while it claims your points automatically for you, instead of needing to periodically checking on the chat to claim your rewards.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Twitch Channel Points Auto-Clicker Twitch Channel Points Auto-Clicker
ID gcfemncaehdhehnidnegppgofnmomido
Επίσημο URL https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido
Περιγραφή Automatically claims Twitch channel watch rewards.
Μέγεθος Αρχείου 7.34 KB
Αριθμός Εγκαταστάσεων 948
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-11-11
Ημερομηνία Δημοσίευσης 2020-11-11
Αξιολόγηση 4.25/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Francis Rhee
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Channel Points Auto-Clicker",
    "version": "1.0",
    "description": "Automatically claims Twitch channel watch rewards.",
    "permissions": [
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}