YouTube Skip Chapter

Automatically skip chapters of YouTube videos you don't want to watch.

YouTube Skip Chapter란 무엇입니까?

YouTube Skip Chapter은(는) skeetsdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically skip chapters of YouTube videos you don't want to watch."입니다.

확장 프로그램 스크린샷

screenshot

YouTube Skip Chapter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have you ever had a YouTube "mix" video that you really enjoy, except for just 2 or 3 songs in the middle?

This extension allows you to skip just what you want to automatically by defining "skip words". If these words are found in a YouTube video's chapter title, that chapter will be skipped automatically.

GitHub: https://github.com/skeets23/YouTube-Skip-Chapter-Chrome-Ext                    

확장 프로그램 기본 정보

이름 YouTube Skip Chapter YouTube Skip Chapter
ID cjpkoghfjpkoapnmkppphegcmchghjdn
공식 URL https://chromewebstore.google.com/detail/youtube-skip-chapter/cjpkoghfjpkoapnmkppphegcmchghjdn
설명 Automatically skip chapters of YouTube videos you don't want to watch.
파일 크기 103 KB
설치 횟수 26
현재 버전 1.0
최근 업데이트 2021-02-24
출시 날짜 2020-11-30
평점 5.00/5 총 3 개의 평점
개발자 skeetsdev
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Skip Chapter",
    "description": "Automatically skip chapters of YouTube videos you don't want to watch.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "youtube_skip_chapter.png",
        "default_title": "Click here to edit skip words",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "*:\/\/*.youtube.com\/watch*",
        "storage"
    ]
}