Twitch Channel Points Autoclicker

Automatically claims 'Channel Points' on Twitch

Co je Twitch Channel Points Autoclicker?

Twitch Channel Points Autoclicker je rozšíření Chrome vyvinuté xinitrc, a jeho hlavní funkcí je „Automatically claims 'Channel Points' on Twitch“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Twitch Channel Points Autoclicker

Stáhněte si soubory rozšíření Twitch Channel Points Autoclicker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Automatically claims 'Channel Points' on Twitch for the channel you are watching.

LITE version that requires no permissions is also available: https://chrome.google.com/webstore/detail/fapndfdannkgofolmaihpbigbolcobek/

Also available for Mozilla Firefox: https://addons.mozilla.org/en-GB/firefox/addon/twitch-points-autoclicker/

What permissions are used and why: https://xinitrc.ca/autoclicker-permissions/

Note: May not be compatible with some twitch design changing extensions.

Available on GitHub: https://github.com/xinitrc-dev/twitch-points-autoclicker                    

Základní Informace o Rozšíření

Název Twitch Channel Points Autoclicker Twitch Channel Points Autoclicker
ID pbeamibpehihpjljabhnchghlbneiane
Oficiální URL https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane
Popis Automatically claims 'Channel Points' on Twitch
Velikost souboru 110 KB
Počet instalací 140,516
Aktuální Verze 1.6.1
Poslední Aktualizace 2021-01-14
Datum Vydání 2020-05-05
Hodnocení 3.88/5 Celkem 134 Hodnocení
Vývojář xinitrc
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://xinitrc.ca/autoclicker-permissions
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Channel Points Autoclicker",
    "description": "Automatically claims 'Channel Points' on Twitch",
    "version": "1.6.1",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "arrive-2.4.1.min.js",
                "twitch-clicker.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "*:\/\/*.twitch.tv\/*",
        "tabs",
        "storage",
        "notifications",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "arrive-2.4.1.min.js",
        "twitch-clicker.js"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_action": {
        "default_title": "Channel Points Autoclicker",
        "default_icon": {
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    }
}