YouTube Chapters In Player
Shows YouTube chapters right in the player
YouTube Chapters In Playerとは何ですか?
YouTube Chapters In Playerはris58hによって開発されたChromeの拡張機能で、その主な機能は「Shows YouTube chapters right in the player」です。
拡張機能のスクリーンショット
YouTube Chapters In Player拡張機能のCRXファイルをダウンロード
YouTube Chapters In Player拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Just click on chapters button at the bottom of YouTube video player to show chapters list right in the player. Key features: - Shows chapters right in the player. - Works in Fullscreen and Theater modes. - Works for embedded videos. - Previous/Next chapter buttons. - Key Moments support. - Chapters from pinned comment. - Open Source https://github.com/ris58h/youtube-chapters-in-player
拡張機能の基本情報
名前 | YouTube Chapters In Player |
ID | ikalbbakholajifblhnmbcffhmhnnohl |
公式URL | https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl |
説明 | Shows YouTube chapters right in the player |
ファイルサイズ | 14.15 KB |
インストール数 | 955 |
現在のバージョン | 0.3.2 |
最終更新日 | 2023-11-27 |
公開日 | 2022-10-13 |
評価 | 4.13/5 合計 8 レビュー |
開発者 | ris58h |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://ris58h.github.io/youtube-chapters-in-player/ |
ヘルプページのURL | https://github.com/ris58h/youtube-chapters-in-player/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Chapters In Player", "description": "Shows YouTube chapters right in the player", "version": "0.3.2", "applications": { "gecko": { "id": "youtube-chapters-in-player@ris58h" } }, "permissions": [ "webRequest", "declarativeNetRequest", "declarativeNetRequestWithHostAccess", "declarativeNetRequestFeedback" ], "host_permissions": [ "https:\/\/www.youtube.com\/" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/www.youtube-nocookie.com\/embed\/*" ], "all_frames": true, "js": [ "content\/content.js" ], "css": [ "content\/content.css" ] } ] } |