Better YouTube Subscriptions
Hide YouTube Shorts and videos you have already watched from your subscriptions feed !
O que é Better YouTube Subscriptions?
Better YouTube Subscriptions é uma extensão do Chrome desenvolvida por OptiSearch, e sua principal característica é "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Better YouTube Subscriptions
Baixe arquivos de extensão Better YouTube Subscriptions 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
Better YouTube Subscriptions is a simple browser extension that allows you to hide the YouTube Shorts videos that are polluting your subscriptions feed. It can also hide the videos that you have already watched. Of course, you can make them appear again with a simple click of a button. In short, it cleans your YouTube Subscriptions feed to only show what you want to watch !
Informações Básicas da Extensão
Nome | Better YouTube Subscriptions |
ID | hbopiiffeioghjoeakkknpcealnlomod |
URL Oficial | https://chromewebstore.google.com/detail/better-youtube-subscripti/hbopiiffeioghjoeakkknpcealnlomod |
Descrição | Hide YouTube Shorts and videos you have already watched from your subscriptions feed ! |
Tamanho do Arquivo | 28 KB |
Contagem de Instalações | 37 |
Versão Atual | 1.0 |
Última Atualização | 2023-02-26 |
Data de Publicação | 2022-09-29 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | OptiSearch |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://dj0ulo.github.io/OptiSearch/privacy.html |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better YouTube Subscriptions", "version": "1.0", "manifest_version": 3, "description": "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !", "icons": { "128": "images\/icon_128.png", "1024": "images\/icon_1024.png" }, "permissions": [ "storage" ], "action": { "default_popup": "src\/pop-up\/index.html" }, "web_accessible_resources": [ { "resources": [ "src\/style.css" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "src\/settings.js", "src\/utils.js", "src\/content_script.js" ] } ] } |