Twitch Loot Collector

This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…

Twitch Loot Collector là gì?

Twitch Loot Collector là một tiện ích mở rộng Chrome được phát triển bởi Coding Castle, và tính năng chính của nó là "This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…".

Ả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 Loot Collector

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

                        This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream it can be annoying if this little green box pops up wanting to be clicked. That's why I created this extension. You can also disable the automated clicking with a simple switch within the extension panel. I'm always happy about feedback.                    

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

Tên Twitch Loot Collector Twitch Loot Collector
ID okagcggpdlegjpllohppffkailcjlcdp
URL Chính Thức https://chromewebstore.google.com/detail/twitch-loot-collector/okagcggpdlegjpllohppffkailcjlcdp
Mô tả This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…
Kích Thước Tệp 11.94 KB
Số Lần Cài Đặt 157
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-05-25
Ngày Phát Hành 2021-05-24
Nhà Phát Triển Coding Castle
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",
    "manifest_version": 3,
    "name": "Twitch Loot Collector",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitch.tv\/*",
                "http:\/\/twitch.tv\/*",
                "https:\/\/www.twitch.tv\/*",
                "http:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "LootCollector.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/twitch_loot_16x16.png",
            "32": "\/images\/twitch_loot_32x32.png",
            "48": "\/images\/twitch_loot_48x48.png",
            "128": "\/images\/twitch_loot_128x128.png"
        }
    },
    "icons": {
        "16": "\/images\/twitch_loot_16x16.png",
        "32": "\/images\/twitch_loot_32x32.png",
        "48": "\/images\/twitch_loot_48x48.png",
        "128": "\/images\/twitch_loot_128x128.png"
    }
}