YouTube Chapters In Player
Shows YouTube chapters right in the player
Cos'è YouTube Chapters In Player?
YouTube Chapters In Player è un'estensione di Chrome sviluppata da ris58h, e la sua funzione principale è "Shows YouTube chapters right in the player".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Chapters In Player
Scarica i file di estensione YouTube Chapters In Player in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | YouTube Chapters In Player |
ID | ikalbbakholajifblhnmbcffhmhnnohl |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl |
Descrizione | Shows YouTube chapters right in the player |
Dimensione del File | 14.15 KB |
Conteggio Installazioni | 955 |
Versione Corrente | 0.3.2 |
Ultimo Aggiornamento | 2023-11-27 |
Data di Pubblicazione | 2022-10-13 |
Valutazione | 4.13/5 Totale 8 Valutazioni |
Sviluppatore | ris58h |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://ris58h.github.io/youtube-chapters-in-player/ |
URL della Pagina di Aiuto | https://github.com/ris58h/youtube-chapters-in-player/issues |
Lingue Supportate | 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" ] } ] } |