YouTube Skip Chapter
Automatically skip chapters of YouTube videos you don't want to watch.
O que é YouTube Skip Chapter?
YouTube Skip Chapter é uma extensão do Chrome desenvolvida por skeetsdev, e sua principal característica é "Automatically skip chapters of YouTube videos you don't want to watch.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Skip Chapter
Baixe arquivos de extensão YouTube Skip Chapter 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
Have you ever had a YouTube "mix" video that you really enjoy, except for just 2 or 3 songs in the middle? This extension allows you to skip just what you want to automatically by defining "skip words". If these words are found in a YouTube video's chapter title, that chapter will be skipped automatically. GitHub: https://github.com/skeets23/YouTube-Skip-Chapter-Chrome-Ext
Informações Básicas da Extensão
Nome | YouTube Skip Chapter |
ID | cjpkoghfjpkoapnmkppphegcmchghjdn |
URL Oficial | https://chromewebstore.google.com/detail/youtube-skip-chapter/cjpkoghfjpkoapnmkppphegcmchghjdn |
Descrição | Automatically skip chapters of YouTube videos you don't want to watch. |
Tamanho do Arquivo | 103 KB |
Contagem de Instalações | 26 |
Versão Atual | 1.0 |
Última Atualização | 2021-02-24 |
Data de Publicação | 2020-11-30 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | skeetsdev |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Skip Chapter", "description": "Automatically skip chapters of YouTube videos you don't want to watch.", "version": "1.0", "browser_action": { "default_icon": "youtube_skip_chapter.png", "default_title": "Click here to edit skip words", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "*:\/\/*.youtube.com\/watch*", "storage" ] } |