YouTube Auto-Proceed to Video

Automatically skip YouTube's "This video may be inappropriate for some users" check

YouTube Auto-Proceed to Video란 무엇입니까?

YouTube Auto-Proceed to Video은(는) ba32107에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically skip YouTube's "This video may be inappropriate for some users" check"입니다.

확장 프로그램 스크린샷

screenshot

YouTube Auto-Proceed to Video 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                                            

확장 프로그램 기본 정보

이름 YouTube Auto-Proceed to Video YouTube Auto-Proceed to Video
ID lmjcoecpdenpmdoieiiendpoohgmabmd
공식 URL https://chrome.google.com/webstore/detail/youtube-auto-proceed-to-v/lmjcoecpdenpmdoieiiendpoohgmabmd
설명 Automatically skip YouTube's "This video may be inappropriate for some users" check
파일 크기 45.05 KB
설치 횟수 1,453
현재 버전 1.6.1
최근 업데이트 2022-07-21
출시 날짜 2020-02-23
평점 4.00/5 총 8 개의 평점
개발자 ba32107
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ba32107/youtube-auto-proceed
도움말 페이지 URL https://github.com/ba32107/youtube-auto-proceed
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Auto-Proceed to Video",
    "short_name": "YouTubeAutoProceed",
    "version": "1.6.1",
    "description": "Automatically skip YouTube's \"This video may be inappropriate for some users\" check",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_title": "YouTube Auto-Proceed to Video",
        "default_icon": {
            "16": "images\/icons\/16.png",
            "32": "images\/icons\/32.png",
            "48": "images\/icons\/48.png",
            "128": "images\/icons\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "libs\/browser-polyfill.min.js",
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icons\/16.png",
        "32": "images\/icons\/32.png",
        "48": "images\/icons\/48.png",
        "128": "images\/icons\/128.png"
    }
}