YouChoose.AI

Content creator should control their videos' recommendation

¿Qué es YouChoose.AI?

YouChoose.AI es una extensión de Chrome desarrollada por Tracking Exposed team, y su función principal es "Content creator should control their videos' recommendation".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión YouChoose.AI

Descarga archivos de extensión YouChoose.AI 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

                        Gain control back on your recommendations on YouTube! 

With YouChoose you can:

- See suggestions provided by the content creator themselves, directly on YouTube.com
- Analyze YouTube's algorithm, and help us expose shadow-banning on the platform.
- Toggle between different recommendation feeds. New alternatives models are coming soon!

YouChoose is a free software built by a non-profit. 

Our goal is to let you choose a recommendation model that is optimized for you, rather than the interests of the platform.

Algorithmic freedom is a crucial step toward digital sovereignty! 

Learn more on https://YouChoose.ai                    

Información Básica de la Extensión

Nombre YouChoose.AI YouChoose.AI
ID lgmednoogihobpaccmabclghbmjiidkh
URL Oficial https://chrome.google.com/webstore/detail/youchooseai/lgmednoogihobpaccmabclghbmjiidkh
Descripción Content creator should control their videos' recommendation
Tamaño del Archivo 1.12 MB
Cantidad de Instalaciones 470
Versión Actual 2.7.0
Última Actualización 2022-11-15
Fecha de Publicación 2021-12-14
Calificación 5.00/5 Total de 6 Calificaciones
Desarrollador Tracking Exposed team
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://youchoose.ai
URL de la Página de Ayuda https://github.com/tracking-exposed/yttrex/issues
URL de la Página de Política de Privacidad https://facebook.tracking.exposed/privacy
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouChoose.AI",
    "short_name": "YCAI",
    "description": "Content creator should control their videos' recommendation",
    "author": "Tracking Exposed team, check it our on https:\/\/youchoose.ai",
    "icons": {
        "16": "ycai16.png",
        "48": "ycai48.png",
        "128": "ycai128.png"
    },
    "browser_action": {
        "default_icon": "ycai16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "https:\/\/*.youtube.com\/",
        "https:\/\/youchoose.ai\/",
        "https:\/\/yt3.ggpht.com\/"
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                ".\/ext.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png",
        "settings.json"
    ],
    "version": "2.7.0",
    "cross_origin_embedder_policy": {
        "value": "require-corp"
    },
    "cross_origin_opener_policy": {
        "value": "same-origin"
    }
}