Youtube Subtitle Navigation

To help to navigate the video via subtitles

Youtube Subtitle Navigation란 무엇입니까?

Youtube Subtitle Navigation은(는) 915522927에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "To help to navigate the video via subtitles"입니다.

확장 프로그램 스크린샷

screenshot

Youtube Subtitle Navigation 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        To show the youtube subtitles in a scroll view. And you can click the subtitle to navigate to any point of the video                    

확장 프로그램 기본 정보

이름 Youtube Subtitle Navigation Youtube Subtitle Navigation
ID mnmncjbohjbmlcjfledohhdbjgmpdgmp
공식 URL https://chromewebstore.google.com/detail/youtube-subtitle-navigati/mnmncjbohjbmlcjfledohhdbjgmpdgmp
설명 To help to navigate the video via subtitles
파일 크기 950 KB
설치 횟수 49
현재 버전 0.0.0.2
최근 업데이트 2022-06-14
출시 날짜 2022-06-14
평점 5.00/5 총 3 개의 평점
개발자 915522927
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/qq915522927/youtube-subtiltle-scroller-plugin
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Subtitle Navigation",
    "version": "0.0.0.2",
    "description": "To help to navigate the video via subtitles",
    "icons": {
        "32": "icons\/logo32.png",
        "128": "icons\/logo128.png",
        "512": "icons\/logo512.png"
    },
    "permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "service_worker": ".\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                ".\/foreground.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "bootstrap-icons.woff",
                "bootstrap-icons.woff2"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ]
}