YouChoose.AI

Content creator should control their videos' recommendation

YouChoose.AI란 무엇입니까?

YouChoose.AI은(는) Tracking Exposed team에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Content creator should control their videos' recommendation"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

YouChoose.AI 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}