YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
O que é YouTube Shorts Remover?
YouTube Shorts Remover é uma extensão do Chrome desenvolvida por http://zalwicker.dev, e sua principal característica é "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Shorts Remover
Baixe arquivos de extensão YouTube Shorts Remover 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
Removes YouTube shorts so your subscription feed only shows long-form videos. Also has the ability to remove upcoming videos, mixes, watched videos, and other annoying things on YouTube. I just want to watch regular videos, and now you can too!
Informações Básicas da Extensão
Nome | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
URL Oficial | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
Descrição | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
Tamanho do Arquivo | 20.47 KB |
Contagem de Instalações | 865 |
Versão Atual | 1.2 |
Última Atualização | 2023-06-11 |
Data de Publicação | 2022-12-06 |
Classificação | 3.73/5 Total de 15 Avaliações |
Desenvolvedor | http://zalwicker.dev |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.zalwicker.dev/projects |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Shorts Remover", "version": "1.2", "description": "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.", "icons": { "32": "images\/noshorts32.png", "48": "images\/noshorts48.png", "128": "images\/noshorts128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "scripts\/background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "action": { "default_popup": "views\/settings.html" }, "permissions": [ "storage" ] } |