Twitch Channel Points Auto-Clicker

Automatically claims Twitch channel watch rewards.

Vad är Twitch Channel Points Auto-Clicker?

Twitch Channel Points Auto-Clicker är en Chrome-tillägg utvecklad av Francis Rhee, och dess huvudfunktion är "Automatically claims Twitch channel watch rewards.".

Tilläggsskärmbilder

screenshot

Ladda ner Twitch Channel Points Auto-Clicker-förlängningens CRX-fil

Ladda ner Twitch Channel Points Auto-Clicker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Twitch Channel Points Auto-Clicker Twitch Channel Points Auto-Clicker
ID gcfemncaehdhehnidnegppgofnmomido
Officiell webbadress https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido
Beskrivning Automatically claims Twitch channel watch rewards.
Filstorlek 7.34 KB
Antal Installationer 948
Aktuell Version 1.0
Senast Uppdaterad 2020-11-11
Publiceringsdatum 2020-11-11
Betyg 4.25/5 Totalt 4 Betyg
Utvecklare Francis Rhee
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}