Twitch Channel Points Autoclicker

Automatically claims 'Channel Points' on Twitch

Twitch Channel Points Autoclicker란 무엇입니까?

Twitch Channel Points Autoclicker은(는) xinitrc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically claims 'Channel Points' on Twitch"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twitch Channel Points Autoclicker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Twitch Channel Points Autoclicker Twitch Channel Points Autoclicker
ID pbeamibpehihpjljabhnchghlbneiane
공식 URL https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane
설명 Automatically claims 'Channel Points' on Twitch
파일 크기 110 KB
설치 횟수 140,516
현재 버전 1.6.1
최근 업데이트 2021-01-14
출시 날짜 2020-05-05
평점 3.88/5 총 134 개의 평점
개발자 xinitrc
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://xinitrc.ca/autoclicker-permissions
지원되는 언어 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"
    }
}