YouTube Ad Auto-Closer

Automatically close ads after X seconds

YouTube Ad Auto-Closer란 무엇입니까?

YouTube Ad Auto-Closer은(는) Zion Developers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically close ads after X seconds"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube Ad Auto-Closer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is NOT an Ad Blocker, It just closes faster.
Support YouTubers by disabling AdBlock / uBlock on youtube.com and use this extension to close the ads as soon as possible after the Close / Skip button is available.

Feature: Automatically mute video ads (Changeable on Options)
Feature: Disable / Enable the extension by pressing F2 (Changeable on Options)

This is not an YouTube official extension.
Youtube is a trade-mark by Google.
Bender Bending Rodríguez, Futurama is created by Matt Groening for Fox Broadcasting Company.
All the logos and pictures here is used under fair-use, And is belonged by the corresponding owners.

This add-on uses google analytics for anonymous statistics, if you don't like it, use uBlock origin (while you can).
License: https://creativecommons.org/licenses/by-nc-sa/4.0/
Open Source: https://github.com/ZionDevelopers/youtube-ad-auto-closer                    

확장 프로그램 기본 정보

이름 YouTube Ad Auto-Closer YouTube Ad Auto-Closer
ID janhkcfgfnafdebdmlbnhopmnoiepmpc
공식 URL https://chrome.google.com/webstore/detail/youtube-ad-auto-closer/janhkcfgfnafdebdmlbnhopmnoiepmpc
설명 Automatically close ads after X seconds
파일 크기 98.13 KB
설치 횟수 46
현재 버전 1.3.21
최근 업데이트 2023-06-10
출시 날짜 2022-08-16
개발자 Zion Developers
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ZionDevelopers/youtube-ad-auto-closer
도움말 페이지 URL https://github.com/ZionDevelopers/youtube-ad-auto-closer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "exclude_globs": [],
            "include_globs": [
                "*youtube.com*"
            ],
            "css": [],
            "js": [
                "includes\/jquery-3.7.0.min.js",
                "includes\/youtube.js",
                "includes\/jquery.hotkeys.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Automatically close ads after X seconds",
    "icons": {
        "128": "icons\/icon.png"
    },
    "manifest_version": 3,
    "name": "YouTube Ad Auto-Closer",
    "short_name": "YT Ad Auto-Closer",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.google-analytics.com\/"
    ],
    "version": "1.3.21",
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "icons\/icon.png",
                "includes\/jquery-3.7.0.min.js",
                "includes\/youtube.js",
                "includes\/jquery-3.7.0.min.map",
                "includes\/jquery.hotkeys.js"
            ]
        }
    ]
}