Twitch Channel Points Autoclicker

Automatically claims 'Channel Points' on Twitch

Twitch Channel Points Autoclickerคืออะไร?

Twitch Channel Points Autoclicker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xinitrc และคุณลักษณะหลักของมันคือ "Automatically claims 'Channel Points' on Twitch"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Channel Points Autoclicker

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}