ShutUpHLTV

Silences some annoying ads on the site

ShutUpHLTV란 무엇입니까?

ShutUpHLTV은(는) ncla에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Silences some annoying ads on the site"입니다.

ShutUpHLTV 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 ShutUpHLTV ShutUpHLTV
ID khpkkmidcgmonalkkmhopbbnndeijebi
공식 URL https://chromewebstore.google.com/detail/shutuphltv/khpkkmidcgmonalkkmhopbbnndeijebi
설명 Silences some annoying ads on the site
파일 크기 33.08 KB
설치 횟수 117
현재 버전 1.0.4
최근 업데이트 2016-09-19
출시 날짜 2016-09-19
평점 5.00/5 총 11 개의 평점
개발자 ncla
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
        }
    ]
}