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文件

下載Twitch Channel Points Autoclicker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}