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 |
官方網址 | 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\/*" ] } ] } |