RecAlign
Filter content by transparent, editable preference.
RecAlignคืออะไร?
RecAlign เป็นส่วนขยายของ Chrome ที่พัฒนาโดย recalign.dev และคุณลักษณะหลักของมันคือ "Filter content by transparent, editable preference."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RecAlign
ดาวน์โหลดไฟล์ส่วนขยาย RecAlign ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Recommendation systems (e.g., Twitter) optimize for your attention and spoil you to the detriment of your own well-being. Their objective is fundamentally misaligned with yours. We are starting an open source initiative RecAlign (short for Recommendation Alignment) to address this misalignment. We use large language models (LLMs) to vet and remove recommendations according to your explicitly stated preference in a transparent and editable way.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | RecAlign |
ID | eedopfonifglenhkedconaljmbnaimej |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/recalign/eedopfonifglenhkedconaljmbnaimej |
คำอธิบาย | Filter content by transparent, editable preference. |
ขนาดไฟล์ | 32.22 KB |
จำนวนการติดตั้ง | 168 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2023-04-13 |
วันที่เผยแพร่ | 2023-04-13 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | recalign.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "RecAlign", "version": "0.1.0", "description": "Filter content by transparent, editable preference.", "icons": { "128": "icon128.png" }, "action": { "default_title": "RecAlign", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*", "https:\/\/zhihu.com\/*", "https:\/\/www.zhihu.com\/*" ] } ], "permissions": [ "storage" ] } |