YouTube Ad Blocker

Automatically blocks advertisement of YouTube Videos

YouTube Ad Blocker란 무엇입니까?

YouTube Ad Blocker은(는) hiatamaworkshop에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically blocks advertisement of YouTube Videos"입니다.

확장 프로그램 스크린샷

screenshot

YouTube Ad Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension functions as "Auto Clicker", it will click on 【Close / Skip Buttons】of the YouTube videos.

It will work for some time, just a silly small function.                    

확장 프로그램 기본 정보

이름 YouTube Ad Blocker YouTube Ad Blocker
ID lnnfiihdkikdognbnlbnfajpeccdohka
공식 URL https://chromewebstore.google.com/detail/youtube-ad-blocker/lnnfiihdkikdognbnlbnfajpeccdohka
설명 Automatically blocks advertisement of YouTube Videos
파일 크기 62.03 KB
설치 횟수 37
현재 버전 0.1.1
최근 업데이트 2021-02-18
출시 날짜 2021-02-17
개발자 hiatamaworkshop
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://hiatamaworkshop.com/main.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Ad Blocker",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Automatically blocks advertisement of YouTube Videos",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_popup": "youtube_adBlock.html",
        "default_icon": "icons\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.js",
        "inject.js"
    ],
    "permissions": [
        "storage"
    ]
}