ContentBlockHelper

Helps you to block advertisements, tracking or any scripts and any annoying contents with easy methods.

ContentBlockHelper란 무엇입니까?

ContentBlockHelper은(는) https://far.whochan.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you to block advertisements, tracking or any scripts and any annoying contents with easy methods."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Helps you to block any annoying contents with easy methods.

This extension helps you to block advertisements, tracking or any scripts and any annoying contents with easy methods.

= Features

* Subscribe public filters of AdBlock Plus format
* Edits rules by easy ways
* Protects browser's default UI
* Light & Fast engine

= Public filters

Turn on your wanted filters in list and click "Start to subscribe".

= Quick filters

Quick filters can block contents by just switching slider without editing complex filters.

Filters becomes stronger by switching the slider from left to right.

= Custom filters

You can add/remove a rule by just clicking buttons on the contents list in the extension-popup. You may edit them exactly in the preferences page.

= Exact format of rules

URL pattern is similar to AdBlock format, but CBH requires wildcard (*) on forward or backward like "||example.com/*". On the other hand, Forward/Backward match "|" is not required.                    

확장 프로그램 기본 정보

이름 ContentBlockHelper ContentBlockHelper
ID ahnpejopbfnjicblkhclaaefhblgkfpd
공식 URL https://chromewebstore.google.com/detail/contentblockhelper/ahnpejopbfnjicblkhclaaefhblgkfpd
설명 Helps you to block advertisements, tracking or any scripts and any annoying contents with easy methods.
파일 크기 336 KB
설치 횟수 23,423
현재 버전 10.5.1
최근 업데이트 2022-05-16
출시 날짜 2020-06-18
평점 4.25/5 총 305 개의 평점
개발자 https://far.whochan.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://far.whochan.com/wlog.cgi/ContentBlockHelper
개인정보 보호 정책 페이지 URL http://far.whochan.com/wlog.cgi/Privacy%20Policy
지원되는 언어 de,en,fr,tr,es,pl,sr,ru,uk,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ContentBlockHelper",
    "version": "10.5.1",
    "author": "Whochan",
    "default_locale": "en",
    "minimum_chrome_version": "80.0",
    "description": "__MSG_DESCRIPTION__",
    "homepage_url": "https:\/\/far.whochan.com\/",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon112.png"
    },
    "background": {
        "page": "index.html"
    },
    "options_ui": {
        "chrome_style": false,
        "open_in_tab": true,
        "page": "options.html"
    },
    "browser_action": {
        "default_title": "ContentBlockHelper",
        "default_icon": {
            "19": "buttons\/disabled.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "contextMenus",
        "webNavigation",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/WHO.extension.client.js",
                "includes\/cbhResourceDetector.js"
            ]
        },
        {
            "run_at": "document_start",
            "all_frames": false,
            "match_about_blank": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/WHO.URL.js",
                "includes\/cbhElementRemover.js",
                "includes\/cbhFilterMaker.js",
                "includes\/usoContentBlockHelper.js"
            ]
        },
        {
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "includes\/removeInlineStylesheet.js",
                "includes\/cbhUIProtection.js"
            ]
        },
        {
            "run_at": "document_end",
            "all_frames": false,
            "match_about_blank": false,
            "matches": [
                "*:\/\/*.5ch.net\/*",
                "*:\/\/*.2ch.net\/*"
            ],
            "js": [
                "includes\/5ch.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/spacer.png",
        "blocked\/*"
    ]
}