CleanTube
YouTube with less clutter.
¿Qué es CleanTube?
CleanTube es una extensión de Chrome desarrollada por elliotwaite, y su función principal es "YouTube with less clutter.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión CleanTube
Descarga archivos de extensión CleanTube 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
This extension hides the following YouTube elements: • The row of recommended videos that appear when a video is paused. • The wall of recommended videos that appear at the end of a video. • Channel watermark logos that appear in the bottom right of videos. • The "Watch later" and "Add to queue" icon buttons that appear over the top right of thumbnails when they are hovered over. This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/cleantube Thanks. Enjoy!
Información Básica de la Extensión
Nombre | CleanTube |
ID | kanfjhdeebkfgkbmnfknhejpadhlmiab |
URL Oficial | https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab |
Descripción | YouTube with less clutter. |
Tamaño del Archivo | 8.85 KB |
Cantidad de Instalaciones | 1,633 |
Versión Actual | 0.4 |
Última Actualización | 2023-08-01 |
Fecha de Publicación | 2021-06-29 |
Calificación | 3.80/5 Total de 5 Calificaciones |
Desarrollador | elliotwaite |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/elliotwaite/cleantube |
URL de la Página de Ayuda | https://github.com/elliotwaite/cleantube |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CleanTube", "version": "0.4", "description": "YouTube with less clutter.", "author": "Elliot Waite", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Options", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*", "storage" ] } |