Youtube Subtitle Navigation

To help to navigate the video via subtitles

Hvad er Youtube Subtitle Navigation?

Youtube Subtitle Navigation er en Chrome-udvidelse udviklet af 915522927, og dens hovedfunktion er "To help to navigate the video via subtitles".

Udvidelsesskærmbilleder

screenshot

Download Youtube Subtitle Navigation-udvidelses-CRX-fil

Download Youtube Subtitle Navigation-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Youtube Subtitle Navigation Youtube Subtitle Navigation
ID mnmncjbohjbmlcjfledohhdbjgmpdgmp
Officiel URL https://chromewebstore.google.com/detail/youtube-subtitle-navigati/mnmncjbohjbmlcjfledohhdbjgmpdgmp
Beskrivelse To help to navigate the video via subtitles
Filstørrelse 950 KB
Antal Installationer 49
Nuværende Version 0.0.0.2
Senest Opdateret 2022-06-14
Udgivelsesdato 2022-06-14
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler 915522927
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/qq915522927/youtube-subtiltle-scroller-plugin
Understøttede Sprog 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\/*"
            ]
        }
    ]
}