Ad Block Zen - Block invasive ads

Blocking popups, trackers and auto skip video ads on Youtube.

Ad Block Zen - Block invasive ads란 무엇입니까?

Ad Block Zen - Block invasive ads은(는) http://adblock-zen.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocking popups, trackers and auto skip video ads on Youtube."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Ad Block Zen - Block invasive ads 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ad Block Zen is a light weight ads blocker that packs a punch 🥊 It blocks ads (not all see below why) from thousands or sources and invasive popup ads that you get a lot on streaming websites. It also skips Youtube video ads.

Features:
⛔ Invasive Pop up blocker on most streaming and download sites. It will be blocked and removed immediately.
🚫 Ads Blocker from thousands of sources.
🔒 Social & Analytics Privacy - We block the analytics and major social trackers.
⭐ Stealth & light - we prevent websites from detecting our extension and we keep our code as light as possible.
📺 Youtube Ad Skipper - All ads are not skippable, but when possible we will auto skip Youtube video ads.

✓ Permissions: we need default permissions on every website to remove ads
✓ Acceptable ads policy : We no not remove all ads for 2 reasons :
1. Not all ads are bad and when well targeted and not invasive it can serve its purpose
2. If you remove ALL ads, then a lot of sites will block you and you will lose access. By remaining tolerant we go through anti-ad blockers.

🚀 About
We are 100% self supported, we were not satisfied with the other extensions out there, they are not up to date, they fail to block all the popups or they get detected by anti ad blockers, so we decided to create our own blocking engine.                    

확장 프로그램 기본 정보

이름 Ad Block Zen - Block invasive ads Ad Block Zen - Block invasive ads
ID inlagmoihfomigcaklkfljlgjmomijji
공식 URL https://chrome.google.com/webstore/detail/ad-block-zen-block-invasi/inlagmoihfomigcaklkfljlgjmomijji
설명 Blocking popups, trackers and auto skip video ads on Youtube.
파일 크기 17.17 KB
설치 횟수 623,184
현재 버전 1.2.14
최근 업데이트 2023-08-02
출시 날짜 2023-05-31
평점 3.95/5 총 21 개의 평점
개발자 http://adblock-zen.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://adblock-zen.com/privacy.html
도움말 페이지 URL https://adblock-zen.com/privacy.html
개인정보 보호 정책 페이지 URL https://adblock-zen.com/privacy.html
지원되는 언어 de,en,fr,nl,da,es,it,pt-BR,sv
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "contentscript.js"
            ],
            "match_about_blank": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "js": [
                "youtubeskipads.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        ""
    ],
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "1.2.14",
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "scripting",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback",
        "declarativeNetRequestWithHostAccess",
        "unlimitedStorage"
    ],
    "icons": {
        "128": "128.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "web-accessible-resources\/*",
                "closepop.html",
                "128.png"
            ],
            "use_dynamic_url": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}