Youtube Subtitle Navigation

To help to navigate the video via subtitles

What is Youtube Subtitle Navigation?

Youtube Subtitle Navigation is a Chrome extension developed by 915522927, and its main feature is "To help to navigate the video via subtitles".

Extension Screenshots

screenshot

Download Youtube Subtitle Navigation Extension CRX File

Download Youtube Subtitle Navigation extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Youtube Subtitle Navigation Youtube Subtitle Navigation
ID mnmncjbohjbmlcjfledohhdbjgmpdgmp
Official URL https://chromewebstore.google.com/detail/youtube-subtitle-navigati/mnmncjbohjbmlcjfledohhdbjgmpdgmp
Description To help to navigate the video via subtitles
File Size 950 KB
Installation Count 49
Current Version 0.0.0.2
Last Updated 2022-06-14
Publish Date 2022-06-14
Rating 5.00/5 Total 3 Ratings
Developer 915522927
Email [email protected]
Payment Type free
Extension Website https://github.com/qq915522927/youtube-subtiltle-scroller-plugin
Supported Languages 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\/*"
            ]
        }
    ]
}