Better YouTube Subscriptions
Hide YouTube Shorts and videos you have already watched from your subscriptions feed !
¿Qué es Better YouTube Subscriptions?
Better YouTube Subscriptions es una extensión de Chrome desarrollada por OptiSearch, y su función principal es "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Better YouTube Subscriptions
Descarga archivos de extensión Better YouTube Subscriptions en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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 !
Información Básica de la Extensión
Nombre | Better YouTube Subscriptions |
ID | hbopiiffeioghjoeakkknpcealnlomod |
URL Oficial | https://chromewebstore.google.com/detail/better-youtube-subscripti/hbopiiffeioghjoeakkknpcealnlomod |
Descripción | Hide YouTube Shorts and videos you have already watched from your subscriptions feed ! |
Tamaño del Archivo | 28 KB |
Cantidad de Instalaciones | 37 |
Versión Actual | 1.0 |
Última Actualización | 2023-02-26 |
Fecha de Publicación | 2022-09-29 |
Calificación | 1.00/5 Total de 1 Calificaciones |
Desarrollador | OptiSearch |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://dj0ulo.github.io/OptiSearch/privacy.html |
Idiomas Soportados | 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" ] } ] } |