YouTube Chapters In Player
Shows YouTube chapters right in the player
O que é YouTube Chapters In Player?
YouTube Chapters In Player é uma extensão do Chrome desenvolvida por ris58h, e sua principal característica é "Shows YouTube chapters right in the player".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Chapters In Player
Baixe arquivos de extensão YouTube Chapters In Player no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | YouTube Chapters In Player |
ID | ikalbbakholajifblhnmbcffhmhnnohl |
URL Oficial | https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl |
Descrição | Shows YouTube chapters right in the player |
Tamanho do Arquivo | 14.15 KB |
Contagem de Instalações | 955 |
Versão Atual | 0.3.2 |
Última Atualização | 2023-11-27 |
Data de Publicação | 2022-10-13 |
Classificação | 4.13/5 Total de 8 Avaliações |
Desenvolvedor | ris58h |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://ris58h.github.io/youtube-chapters-in-player/ |
URL da Página de Ajuda | https://github.com/ris58h/youtube-chapters-in-player/issues |
Idiomas Suportados | 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" ] } ] } |