YouChoose.AI

Content creator should control their videos' recommendation

Τι είναι το YouChoose.AI;

Το YouChoose.AI είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tracking Exposed team, και η κύρια λειτουργία του είναι "Content creator should control their videos' recommendation".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouChoose.AI

Λήψη αρχείων επέκτασης YouChoose.AI σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouChoose.AI YouChoose.AI
ID lgmednoogihobpaccmabclghbmjiidkh
Επίσημο URL https://chrome.google.com/webstore/detail/youchooseai/lgmednoogihobpaccmabclghbmjiidkh
Περιγραφή Content creator should control their videos' recommendation
Μέγεθος Αρχείου 1.12 MB
Αριθμός Εγκαταστάσεων 470
Τρέχουσα Έκδοση 2.7.0
Τελευταία Ενημέρωση 2022-11-15
Ημερομηνία Δημοσίευσης 2021-12-14
Αξιολόγηση 5.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Tracking Exposed team
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://youchoose.ai
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/tracking-exposed/yttrex/issues
URL της Σελίδας Πολιτικής Απορρήτου https://facebook.tracking.exposed/privacy
Υποστηριζόμενες Γλώσσες 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"
    }
}