Twitch - Remove Top Cheer

This extension removes the top cheer from the top of chat on twitch.tv

O que é Twitch - Remove Top Cheer?

Twitch - Remove Top Cheer é uma extensão do Chrome desenvolvida por josh.m.correia, e sua principal característica é "This extension removes the top cheer from the top of chat on twitch.tv".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch - Remove Top Cheer

Baixe arquivos de extensão Twitch - Remove Top Cheer 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 is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv                    

Informações Básicas da Extensão

Nome Twitch - Remove Top Cheer Twitch - Remove Top Cheer
ID plhdimgjjobkjbdngkdfenkcdfipjhfc
URL Oficial https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc
Descrição This extension removes the top cheer from the top of chat on twitch.tv
Tamanho do Arquivo 39.8 KB
Contagem de Instalações 88
Versão Atual 1.03
Última Atualização 2019-02-17
Data de Publicação 2019-02-17
Classificação 4.00/5 Total de 4 Avaliações
Desenvolvedor josh.m.correia
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch - Remove Top Cheer",
    "description": "This extension removes the top cheer from the top of chat on twitch.tv",
    "version": "1.03",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "remove_top_cheer.js"
            ],
            "run_at": "document_end"
        }
    ]
}