YouTube Recommendation Decliner

Declines video recommendations from YouTube to help lessen procrastination.

¿Qué es YouTube Recommendation Decliner?

YouTube Recommendation Decliner es una extensión de Chrome desarrollada por Anders Steen, y su función principal es "Declines video recommendations from YouTube to help lessen procrastination.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión YouTube Recommendation Decliner

Descarga archivos de extensión YouTube Recommendation Decliner 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

                        Hides videos that are considered recommended videos. This includes the YouTube home and trending pages, as well as the related videos appearing below or to the side of video playback. Recommended videos appearing after videos are also declined. Searches, subscriptions, history, library and channels are unaffected.

The point is to get the recommended videos out of sight, in order to decrease the risk of users getting stuck clicking on recommended videos for hours.                    

Información Básica de la Extensión

Nombre YouTube Recommendation Decliner YouTube Recommendation Decliner
ID feoddkggeangnmgoomlcdldcffoidake
URL Oficial https://chromewebstore.google.com/detail/youtube-recommendation-de/feoddkggeangnmgoomlcdldcffoidake
Descripción Declines video recommendations from YouTube to help lessen procrastination.
Tamaño del Archivo 18.43 KB
Cantidad de Instalaciones 15
Versión Actual 1.1.0
Última Actualización 2020-12-14
Fecha de Publicación 2020-03-11
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Anders Steen
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Recommendation Decliner",
    "short_name": "YT Decliner",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Declines video recommendations from YouTube to help lessen procrastination.",
    "icons": {
        "16": "\/images\/icon_16.png",
        "128": "\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "all_frames": true,
            "js": [
                "\/js\/contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "\/images\/icon_128.png",
        "default_popup": "\/html\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}