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…

O que é Twitch Loot Collector?

Twitch Loot Collector é uma extensão do Chrome desenvolvida por Coding Castle, e sua principal característica é "This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Twitch Loot Collector

Baixe arquivos de extensão Twitch Loot Collector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Twitch Loot Collector Twitch Loot Collector
ID okagcggpdlegjpllohppffkailcjlcdp
URL Oficial https://chromewebstore.google.com/detail/twitch-loot-collector/okagcggpdlegjpllohppffkailcjlcdp
Descrição This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…
Tamanho do Arquivo 11.94 KB
Contagem de Instalações 157
Versão Atual 1.0
Última Atualização 2021-05-25
Data de Publicação 2021-05-24
Desenvolvedor Coding Castle
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}