YouTube Background Ad Skip Extension

Automatically Skip ads on YouTube. This is not an ad blocker

YouTube Background Ad Skip Extension란 무엇입니까?

YouTube Background Ad Skip Extension은(는) Krysp_Coder에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically Skip ads on YouTube. This is not an ad blocker"입니다.

확장 프로그램 스크린샷

screenshot

YouTube Background Ad Skip Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.                    

확장 프로그램 기본 정보

이름 YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
공식 URL https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
설명 Automatically Skip ads on YouTube. This is not an ad blocker
파일 크기 17.34 KB
설치 횟수 867
현재 버전 0.1.1
최근 업데이트 2018-06-20
출시 날짜 2018-06-20
평점 3.33/5 총 3 개의 평점
개발자 Krysp_Coder
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Background Ad Skip Extension",
    "short_name": "YBASE",
    "version": "0.1.1",
    "description": "Automatically Skip ads on YouTube. This is not an ad blocker",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false,
        "matches": [
            "https:\/\/www.youtube.com?*"
        ]
    },
    "browser_action": {
        "default_icon": "images\/media-skip-forward-xxl.png"
    },
    "icons": {
        "16": "images\/media-skip-forward16.png",
        "32": "images\/media-skip-forward32.png",
        "48": "images\/media-skip-forward48.png",
        "128": "images\/media-skip-forward128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ]
        }
    ]
}