ShutUpHLTV

Silences some annoying ads on the site

Co to jest ShutUpHLTV?

ShutUpHLTV to rozszerzenie Chrome opracowane przez ncla, a jego główną funkcją jest „Silences some annoying ads on the site”.

Pobierz plik CRX rozszerzenia ShutUpHLTV

Pobierz pliki rozszerzeń ShutUpHLTV w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        - 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/                    

Podstawowe informacje o rozszerzeniu

Nazwa ShutUpHLTV ShutUpHLTV
ID khpkkmidcgmonalkkmhopbbnndeijebi
Oficjalny URL https://chromewebstore.google.com/detail/shutuphltv/khpkkmidcgmonalkkmhopbbnndeijebi
Opis Silences some annoying ads on the site
Rozmiar pliku 33.08 KB
Liczba instalacji 117
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2016-09-19
Data Publikacji 2016-09-19
Ocena 5.00/5 Łącznie 11 Oceny
Deweloper ncla
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}