YouChoose.AI

Content creator should control their videos' recommendation

Wat is YouChoose.AI?

YouChoose.AI is een Chrome-extensie ontwikkeld door Tracking Exposed team, en de belangrijkste functie is "Content creator should control their videos' recommendation".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie YouChoose.AI

Download YouChoose.AI-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam YouChoose.AI YouChoose.AI
ID lgmednoogihobpaccmabclghbmjiidkh
Officiële URL https://chrome.google.com/webstore/detail/youchooseai/lgmednoogihobpaccmabclghbmjiidkh
Beschrijving Content creator should control their videos' recommendation
Bestandsgrootte 1.12 MB
Aantal Installaties 470
Huidige Versie 2.7.0
Laatst Bijgewerkt 2022-11-15
Publicatiedatum 2021-12-14
Beoordeling 5.00/5 Totaal 6 Beoordelingen
Ontwikkelaar Tracking Exposed team
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://youchoose.ai
Help Pagina-URL https://github.com/tracking-exposed/yttrex/issues
URL van de Privacybeleid Pagina https://facebook.tracking.exposed/privacy
Ondersteunde Talen 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"
    }
}