Twitch Channel Points Autoclicker

Automatically claims 'Channel Points' on Twitch

Co to jest Twitch Channel Points Autoclicker?

Twitch Channel Points Autoclicker to rozszerzenie Chrome opracowane przez xinitrc, a jego główną funkcją jest „Automatically claims 'Channel Points' on Twitch”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Twitch Channel Points Autoclicker

Pobierz pliki rozszerzeń Twitch Channel Points Autoclicker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch Channel Points Autoclicker Twitch Channel Points Autoclicker
ID pbeamibpehihpjljabhnchghlbneiane
Oficjalny URL https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane
Opis Automatically claims 'Channel Points' on Twitch
Rozmiar pliku 110 KB
Liczba instalacji 140,516
Aktualna Wersja 1.6.1
Ostatnia Aktualizacja 2021-01-14
Data Publikacji 2020-05-05
Ocena 3.88/5 Łącznie 134 Oceny
Deweloper xinitrc
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://xinitrc.ca/autoclicker-permissions
Obsługiwane Języki 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"
    }
}