ShutUpHLTV

Silences some annoying ads on the site

Vad är ShutUpHLTV?

ShutUpHLTV är en Chrome-tillägg utvecklad av ncla, och dess huvudfunktion är "Silences some annoying ads on the site".

Ladda ner ShutUpHLTV-förlängningens CRX-fil

Ladda ner ShutUpHLTV-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn ShutUpHLTV ShutUpHLTV
ID khpkkmidcgmonalkkmhopbbnndeijebi
Officiell webbadress https://chromewebstore.google.com/detail/shutuphltv/khpkkmidcgmonalkkmhopbbnndeijebi
Beskrivning Silences some annoying ads on the site
Filstorlek 33.08 KB
Antal Installationer 117
Aktuell Version 1.0.4
Senast Uppdaterad 2016-09-19
Publiceringsdatum 2016-09-19
Betyg 5.00/5 Totalt 11 Betyg
Utvecklare ncla
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}