ShutUpHLTV

Silences some annoying ads on the site

O que é ShutUpHLTV?

ShutUpHLTV é uma extensão do Chrome desenvolvida por ncla, e sua principal característica é "Silences some annoying ads on the site".

Baixar o arquivo CRX da Extensão ShutUpHLTV

Baixe arquivos de extensão ShutUpHLTV 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

                        - Blocks site from opening new tabs when you click on the background ad
- Removes/hides ads that are custom made to avoid common ad-blocking blacklists
- Removes 'Sponsors' blocks

The code is open source, free for anyone to look and contribute
https://github.com/ncla/ShutUpHLTV/                    

Informações Básicas da Extensão

Nome ShutUpHLTV ShutUpHLTV
ID khpkkmidcgmonalkkmhopbbnndeijebi
URL Oficial https://chromewebstore.google.com/detail/shutuphltv/khpkkmidcgmonalkkmhopbbnndeijebi
Descrição Silences some annoying ads on the site
Tamanho do Arquivo 33.08 KB
Contagem de Instalações 117
Versão Atual 1.0.4
Última Atualização 2016-09-19
Data de Publicação 2016-09-19
Classificação 5.00/5 Total de 11 Avaliações
Desenvolvedor ncla
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShutUpHLTV",
    "version": "1.0.4",
    "manifest_version": 2,
    "description": "Silences some annoying ads on the site",
    "homepage_url": "http:\/\/github.com\/ncla\/ShutUpHLTV",
    "permissions": [
        "*:\/\/*.hltv.org\/*",
        "webRequest",
        "webRequestBlocking",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hltv.org\/*"
            ],
            "js": [
                "vendors\/jquery\/jquery-2.1.4.min.js",
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ]
}