Twitch Channel Points Auto-Clicker

Automatically claims Twitch channel watch rewards.

Twitch Channel Points Auto-Clicker क्या है?

Twitch Channel Points Auto-Clicker Francis Rhee द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically claims Twitch channel watch rewards."।

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

screenshot

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

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

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

                        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
}