Youtube adblocker

watch ads free videos on youtube

Youtube adblocker란 무엇입니까?

Youtube adblocker은(는) youtbadblocker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "watch ads free videos on youtube"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Youtube adblocker is a Chrome extension designed to enhance your browsing experience by blocking intrusive ads on youtube  and annoying pop-ups. With its user-friendly interface, it offers efficient ad and popup blocking, allowing you to enjoy a cleaner, faster, and more secure online environment. Say goodbye to distractions, protect your privacy, and browse the web with ease. Install Youtube adblocker today and take control of your online experience.                    

확장 프로그램 기본 정보

이름 Youtube adblocker Youtube adblocker
ID nihjoknbdeopkanoegafjcbbeaidemke
공식 URL https://chromewebstore.google.com/detail/youtube-adblocker/nihjoknbdeopkanoegafjcbbeaidemke
설명 watch ads free videos on youtube
파일 크기 136 KB
설치 횟수 440
현재 버전 1.2.0
최근 업데이트 2024-01-15
출시 날짜 2023-09-24
평점 5.00/5 총 23 개의 평점
개발자 youtbadblocker
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.youtubeadblocker.net/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube adblocker",
    "description": "watch ads free videos on youtube",
    "version": "1.2.0",
    "manifest_version": 3,
    "icons": {
        "16": "YoutubeAdBlocker16x16.png",
        "48": "YoutubeAdBlocker48x48.png",
        "128": "YoutubeAdBlocker128x128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "YoutubeAdBlocker",
        "default_icon": "YoutubeAdBlocker16x16.png"
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}