Twitch Channel Points Auto-Clicker

Automatically claims Twitch channel watch rewards.

Twitch Channel Points Auto-Clicker là gì?

Twitch Channel Points Auto-Clicker là một tiện ích mở rộng Chrome được phát triển bởi Francis Rhee, và tính năng chính của nó là "Automatically claims Twitch channel watch rewards.".

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

screenshot

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

Tải xuống các tệp mở rộng Twitch Channel Points Auto-Clicker 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

                        Have you ever been in a different tab or been away while leaving a stream on, and came back to the stream realizing you could've claimed your watch reward a long time ago? This extension allows you to sit back and focus your attention on other things while it claims your points automatically for you, instead of needing to periodically checking on the chat to claim your rewards.                    

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

Tên Twitch Channel Points Auto-Clicker Twitch Channel Points Auto-Clicker
ID gcfemncaehdhehnidnegppgofnmomido
URL Chính Thức https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido
Mô tả Automatically claims Twitch channel watch rewards.
Kích Thước Tệp 7.34 KB
Số Lần Cài Đặt 948
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-11-11
Ngày Phát Hành 2020-11-11
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Francis Rhee
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Channel Points Auto-Clicker",
    "version": "1.0",
    "description": "Automatically claims Twitch channel watch rewards.",
    "permissions": [
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}