ShutUpHLTV

Silences some annoying ads on the site

Was ist ShutUpHLTV?

ShutUpHLTV ist eine Chrome-Erweiterung, die von ncla entwickelt wurde, und ihr Hauptmerkmal ist "Silences some annoying ads on the site".

ShutUpHLTV-Erweiterungs-CRX-Datei herunterladen

Laden Sie ShutUpHLTV-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name ShutUpHLTV ShutUpHLTV
ID khpkkmidcgmonalkkmhopbbnndeijebi
Offizielle URL https://chromewebstore.google.com/detail/shutuphltv/khpkkmidcgmonalkkmhopbbnndeijebi
Beschreibung Silences some annoying ads on the site
Dateigröße 33.08 KB
Installationsanzahl 117
Aktuelle Version 1.0.4
Letztes Update 2016-09-19
Veröffentlichungsdatum 2016-09-19
Bewertung 5.00/5 Insgesamt 11 Bewertungen
Entwickler ncla
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}