YouTube Spam Remover
Hides most YouTube spam comments
¿Qué es YouTube Spam Remover?
YouTube Spam Remover es una extensión de Chrome desarrollada por Luke Pflibsen-Jones, y su función principal es "Hides most YouTube spam comments".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Spam Remover
Descarga archivos de extensión YouTube Spam Remover 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
Detects spam comments and automatically hides them, protecting its users from spoofers, adult content pushers, and other annoyances. If the add-on hides a comment you want to see, simply click the "Likely spam (+)" text and it will reveal the hidden comment (with the profile picture blurred just in case). Displaying the reason the comment was marked as spam can be disabled/enabled via the "spam reason labels" in the options menu.
Información Básica de la Extensión
Nombre | YouTube Spam Remover |
ID | gmlbmlpbijkhcdhfaaimaehgjfjccffd |
URL Oficial | https://chromewebstore.google.com/detail/youtube-spam-remover/gmlbmlpbijkhcdhfaaimaehgjfjccffd |
Descripción | Hides most YouTube spam comments |
Tamaño del Archivo | 938 KB |
Cantidad de Instalaciones | 1,206 |
Versión Actual | 2.1.0 |
Última Actualización | 2023-12-07 |
Fecha de Publicación | 2022-02-03 |
Calificación | 2.57/5 Total de 7 Calificaciones |
Desarrollador | Luke Pflibsen-Jones |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/lukepfjo/YouTube-Spam-Remover |
URL de la Página de Ayuda | https://github.com/luketimothyjones/youtube-spam-remover/issues/ |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Spam Remover", "version": "2.1.0", "description": "Hides most YouTube spam comments", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "unlimitedStorage" ], "host_permissions": [ "https:\/\/yt3.ggpht.com\/*", "https:\/\/raw.githubusercontent.com\/lukepfjo\/YouTube-Spam-Remover\/main\/src\/extern\/opennsfwjs\/model\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/youtube.com\/watch*" ], "js": [ "yt-spam-remover.js", "opennsfw.min.js", "pixelmatch.min.js" ], "css": [ "yt-spam-remover.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "yt-spam-remover-worker.js", "opennsfw.min.js", "pixelmatch.min.js", "allowed-sites.json.gz" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ] } ], "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png" }, "default_popup": "gui\/ytsr-gui-tab.html" }, "options_ui": { "page": "gui\/ytsr-gui-options.html", "browser_style": true }, "background": { "service_worker": "yt-spam-remover-background.js" } } |