Twitch ChestClicker

ChestClicker for Twitch

What is Twitch ChestClicker?

Twitch ChestClicker is a Chrome extension developed by spddl, and its main feature is "ChestClicker for Twitch".

Extension Screenshots

screenshot

Download Twitch ChestClicker Extension CRX File

Download Twitch ChestClicker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Automatically collects the Twitch.tv chests that you actually have to click.

This works sparingly via the https://developer.mozilla.org/de/docs/Web/API/MutationObserver API                    

Extension Basic Information

Name Twitch ChestClicker Twitch ChestClicker
ID mdjllaihmfallpabkcdjnklhnpfiadbh
Official URL https://chromewebstore.google.com/detail/twitch-chestclicker/mdjllaihmfallpabkcdjnklhnpfiadbh
Description ChestClicker for Twitch
File Size 18.43 KB
Installation Count 37
Current Version 0.0.9
Last Updated 2021-07-04
Publish Date 2020-09-04
Developer spddl
Email [email protected]
Payment Type free
Extension Website https://github.com/spddl/Twitch-ChestClicker
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch ChestClicker",
    "description": "ChestClicker for Twitch",
    "version": "0.0.9",
    "icons": {
        "48": "logo48.png",
        "128": "logo128.png",
        "256": "logo256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "action": {
        "default_title": "Twitch ChestClicker",
        "default_icon": {
            "48": "logo48.png",
            "128": "logo128.png",
            "256": "logo256.png"
        }
    }
}