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 |
官方網址 | 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 |
電子郵箱 | [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" ] } ] } |