Remove YouTube Autoplay
Isn't YouTube autoplay the worst? This removes it
O que é Remove YouTube Autoplay?
Remove YouTube Autoplay é uma extensão do Chrome desenvolvida por Kareem ElFaramawi, e sua principal característica é "Isn't YouTube autoplay the worst? This removes it".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Remove YouTube Autoplay
Baixe arquivos de extensão Remove 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
Simple extension to completely disable and remove the YouTube autoplay feature, which would load another video after the current one ends. This extension will continue to work if you: - Delete browser history - Enter incognito mode (After enabling this option in your extension settings) Note that this extension only affects videos that would normally show the autoplay switch, this excludes playlists, livestreams, etc.
Informações Básicas da Extensão
Nome | Remove YouTube Autoplay |
ID | afppjndapmkekhnionfccdnajhdnokhj |
URL Oficial | https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj |
Descrição | Isn't YouTube autoplay the worst? This removes it |
Tamanho do Arquivo | 1.68 MB |
Contagem de Instalações | 848 |
Versão Atual | 0.1.7 |
Última Atualização | 2023-06-05 |
Data de Publicação | 2018-10-06 |
Classificação | 3.57/5 Total de 23 Avaliações |
Desenvolvedor | Kareem ElFaramawi |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/krx/chrome-delete-youtube-autoplay |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Remove YouTube Autoplay", "description": "Isn't YouTube autoplay the worst? This removes it", "author": "krx", "version": "0.1.7", "host_permissions": [ "http:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "js\/disableAutoplay.js" ], "run_at": "document_end" } ], "action": { "default_icon": "img\/icon_19.png" }, "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "64": "img\/icon_64.png", "128": "img\/icon_128.png" } } |