YT Skip Ads

This extension attempts to skip the YouTube ads automatically

YT Skip Ads란 무엇입니까?

YT Skip Ads은(는) Furqan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension attempts to skip the YouTube ads automatically"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YT Skip Ads 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension basically automates two things for you, so you can save yourselves a few seconds of time and avoid mundane tasks:
1. Auto-skips those 5 second ads on YouTube: 
YouTube usually plays ads before the videos, and these ads have a countdown timer of around 5 seconds before the ad can be skipped using the "Skip Ad" button, which only appears after few seconds. This extension tries to skip the ad immediately and automatically for you, even before the ad countdown timer ends. This works when the ad is a "skippable" ad. 
2. Dismisses those annoying overlay ads that appear over the video at the bottom, with a remarkably small button to close them.                    

확장 프로그램 기본 정보

이름 YT Skip Ads YT Skip Ads
ID lahknfhfeikbpljolkheigimmcfhplga
공식 URL https://chromewebstore.google.com/detail/yt-skip-ads/lahknfhfeikbpljolkheigimmcfhplga
설명 This extension attempts to skip the YouTube ads automatically
파일 크기 17.31 KB
설치 횟수 34
현재 버전 1.0
최근 업데이트 2021-09-14
출시 날짜 2021-09-14
개발자 Furqan
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YT Skip Ads",
    "description": "This extension attempts to skip the YouTube ads automatically",
    "version": "1.0",
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "YouTube Skip Ads"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "src\/css\/main.css"
            ],
            "js": [
                "src\/js\/dom-watcher.js"
            ],
            "run_at": "document_end"
        }
    ]
}