Stop Youtube Autoplay
This extension allows you to disable autoplay by default on Youtube
O que é Stop Youtube Autoplay?
Stop Youtube Autoplay é uma extensão do Chrome desenvolvida por Joseph Feld, e sua principal característica é "This extension allows you to disable autoplay by default on Youtube".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Stop Youtube Autoplay
Baixe arquivos de extensão Stop Youtube Autoplay 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
This extension automatically disables the feature where Youtube will automatically play the next suggested video. You can just click it off manually, but you need to remember to do that every time and it wastes precious seconds you could be using to watch more Youtube. There is also an option to permanently enable autoplay (if you actually want autoplay on) by flipping the switch in the extension popup. Feel free to contact me if you find any issues or have any suggestions. This extension is not intended to stop videos from automatically playing when you open a new tab. It only stops the next suggested video from playing.
Informações Básicas da Extensão
Nome | |
ID | npcghnpganhnghapekiicaeiobnhbbfa |
URL Oficial | https://chrome.google.com/webstore/detail/stop-youtube-autoplay/npcghnpganhnghapekiicaeiobnhbbfa |
Descrição | This extension allows you to disable autoplay by default on Youtube |
Tamanho do Arquivo | 41.84 KB |
Contagem de Instalações | 5,000 |
Versão Atual | 1.3 |
Última Atualização | 2018-10-29 |
Data de Publicação | 2018-10-29 |
Classificação | 3.02/5 Total de 60 Avaliações |
Desenvolvedor | Joseph Feld |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stop Youtube Autoplay", "short_name": "No Autoplay", "description": "This extension allows you to disable autoplay by default on Youtube", "version": "1.3", "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "matches": [ "https:\/\/www.youtube.com\/watch*", "http:\/\/www.youtube.com\/watch*" ], "scripts": [ "background.js" ], "persistent": false } } |