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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
}
]
} | |