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”。
扩展截图
下载Youtube Subtitle Navigation扩展crx文件
下载Youtube Subtitle Navigation扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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\/*" ] } ] } |