YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

YouTube Chapterize란 무엇입니까?

YouTube Chapterize은(는) blackway에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides convenience functions to handle YouTube chapters."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Use this extension if you want to shuffle the order of chapters. If you toggle the shuffle button at the top of the chapter list, the play time will shift to a random chapter when one chapter has finished playing.

Features
- You can shuffle chapters in a video.                    

확장 프로그램 기본 정보

이름 YouTube Chapterize YouTube Chapterize
ID pndbjffcoioeikhcfofoefnlbiiidclh
공식 URL https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh
설명 Provides convenience functions to handle YouTube chapters.
파일 크기 10.32 KB
설치 횟수 58
현재 버전 2
최근 업데이트 2021-11-24
출시 날짜 2021-11-23
평점 5.00/5 총 2 개의 평점
개발자 blackway
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Chapterize",
    "description": "Provides convenience functions to handle YouTube chapters.",
    "version": "2",
    "manifest_version": 3,
    "permissions": [
        "scripting"
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}