Recommendation Tweaker for YouTube
Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!
¿Qué es Recommendation Tweaker for YouTube?
Recommendation Tweaker for YouTube es una extensión de Chrome desarrollada por https://benedani.xyz, y su función principal es "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Recommendation Tweaker for YouTube
Descarga archivos de extensión Recommendation Tweaker for YouTube 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
An open source, purely client-side browser extension that gives you control over YouTube's feed! Get rid of videos you've already seen, useless mixes and everything else you don't like! v2.1 notes: Fixed a bug where an invisible "video" that didn't even exist would cause the extension to error internally. It makes perfect sense, don't question it.
Información Básica de la Extensión
Nombre | Recommendation Tweaker for YouTube |
ID | jmcdldlbcgjfppbblagddgjbnjajmgec |
URL Oficial | https://chromewebstore.google.com/detail/recommendation-tweaker-fo/jmcdldlbcgjfppbblagddgjbnjajmgec |
Descripción | Take the trash out! Get rid of the garbage recommendations with this highly customizable extension! |
Tamaño del Archivo | 80.81 KB |
Cantidad de Instalaciones | 269 |
Versión Actual | 2.1 |
Última Actualización | 2023-09-26 |
Fecha de Publicación | 2021-04-30 |
Calificación | 3.33/5 Total de 9 Calificaciones |
Desarrollador | https://benedani.xyz |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://discord.gg/Zf2k7KK |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Recommendation Tweaker for YouTube", "version": "2.1", "description": "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!", "author": "Benedani - https:\/\/benedani.xyz\/", "permissions": [ "storage" ], "icons": { "32": "icons\/32.png", "64": "icons\/64.png", "96": "icons\/96.png", "192": "icons\/192.png", "384": "icons\/384.png" }, "browser_action": { "default_icon": { "32": "icons\/32.png", "64": "icons\/64.png", "96": "icons\/96.png", "192": "icons\/192.png", "384": "icons\/384.png" }, "default_title": "Recommendation Tweaker for YouTube", "default_popup": "settings\/a.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "runtweak.js" ] } ], "background": { "scripts": [ "storage.js" ] } } |