YouChoose.AI
Content creator should control their videos' recommendation
YouChoose.AIคืออะไร?
YouChoose.AI เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tracking Exposed team และคุณลักษณะหลักของมันคือ "Content creator should control their videos' recommendation"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" } } |