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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}