Youtube Subtitle Navigation

To help to navigate the video via subtitles

Was ist Youtube Subtitle Navigation?

Youtube Subtitle Navigation ist eine Chrome-Erweiterung, die von 915522927 entwickelt wurde, und ihr Hauptmerkmal ist "To help to navigate the video via subtitles".

Erweiterungsscreenshots

screenshot

Youtube Subtitle Navigation-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Subtitle Navigation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Youtube Subtitle Navigation Youtube Subtitle Navigation
ID mnmncjbohjbmlcjfledohhdbjgmpdgmp
Offizielle URL https://chromewebstore.google.com/detail/youtube-subtitle-navigati/mnmncjbohjbmlcjfledohhdbjgmpdgmp
Beschreibung To help to navigate the video via subtitles
Dateigröße 950 KB
Installationsanzahl 49
Aktuelle Version 0.0.0.2
Letztes Update 2022-06-14
Veröffentlichungsdatum 2022-06-14
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler 915522927
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/qq915522927/youtube-subtiltle-scroller-plugin
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}