YouChoose.AI

Content creator should control their videos' recommendation

Qu'est-ce que YouChoose.AI ?

YouChoose.AI est une extension Chrome développée par Tracking Exposed team, et sa fonction principale est "Content creator should control their videos' recommendation".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension YouChoose.AI

Téléchargez les fichiers d'extension YouChoose.AI au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom YouChoose.AI YouChoose.AI
ID lgmednoogihobpaccmabclghbmjiidkh
URL Officiel https://chrome.google.com/webstore/detail/youchooseai/lgmednoogihobpaccmabclghbmjiidkh
Description Content creator should control their videos' recommendation
Taille du Fichier 1.12 MB
Nombre d'Installations 470
Version Actuelle 2.7.0
Dernière Mise à Jour 2022-11-15
Date de Publication 2021-12-14
Évaluation 5.00/5 Total 6 Évaluations
Développeur Tracking Exposed team
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://youchoose.ai
URL de la Page d'Aide https://github.com/tracking-exposed/yttrex/issues
URL de la Page de Politique de Confidentialité https://facebook.tracking.exposed/privacy
Langues Prises en Charge 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"
    }
}