RecAlign
Filter content by transparent, editable preference.
What is RecAlign?
RecAlign is a Chrome extension developed by recalign.dev, and its main feature is "Filter content by transparent, editable preference.".
Extension Screenshots
Download RecAlign Extension CRX File
Download RecAlign extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | RecAlign |
ID | eedopfonifglenhkedconaljmbnaimej |
Official URL | https://chromewebstore.google.com/detail/recalign/eedopfonifglenhkedconaljmbnaimej |
Description | Filter content by transparent, editable preference. |
File Size | 32.22 KB |
Installation Count | 168 |
Current Version | 0.1.0 |
Last Updated | 2023-04-13 |
Publish Date | 2023-04-13 |
Rating | 5.00/5 Total 1 Ratings |
Developer | recalign.dev |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |