Twitch Channel Points Autoclicker

Automatically claims 'Channel Points' on Twitch

Twitch Channel Points Autoclicker là gì?

Twitch Channel Points Autoclicker là một tiện ích mở rộng Chrome được phát triển bởi xinitrc, và tính năng chính của nó là "Automatically claims 'Channel Points' on Twitch".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitch Channel Points Autoclicker

Tải xuống các tệp mở rộng Twitch Channel Points Autoclicker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitch Channel Points Autoclicker Twitch Channel Points Autoclicker
ID pbeamibpehihpjljabhnchghlbneiane
URL Chính Thức https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane
Mô tả Automatically claims 'Channel Points' on Twitch
Kích Thước Tệp 110 KB
Số Lần Cài Đặt 140,516
Phiên Bản Hiện Tại 1.6.1
Cập Nhật Lần Cuối 2021-01-14
Ngày Phát Hành 2020-05-05
Đánh Giá 3.88/5 Tổng số 134 Đánh Giá
Nhà Phát Triển xinitrc
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://xinitrc.ca/autoclicker-permissions
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}