YouTube Chapters In Player
Shows YouTube chapters right in the player
Co je YouTube Chapters In Player?
YouTube Chapters In Player je rozšíření Chrome vyvinuté ris58h, a jeho hlavní funkcí je „Shows YouTube chapters right in the player“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření YouTube Chapters In Player
Stáhněte si soubory rozšíření YouTube Chapters In Player ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | YouTube Chapters In Player |
ID | ikalbbakholajifblhnmbcffhmhnnohl |
Oficiální URL | https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl |
Popis | Shows YouTube chapters right in the player |
Velikost souboru | 14.15 KB |
Počet instalací | 955 |
Aktuální Verze | 0.3.2 |
Poslední Aktualizace | 2023-11-27 |
Datum Vydání | 2022-10-13 |
Hodnocení | 4.13/5 Celkem 8 Hodnocení |
Vývojář | ris58h |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://ris58h.github.io/youtube-chapters-in-player/ |
URL Stránky Nápovědy | https://github.com/ris58h/youtube-chapters-in-player/issues |
Podporované Jazyky | 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" ] } ] } |