RecAlign
Filter content by transparent, editable preference.
Vad är RecAlign?
RecAlign är en Chrome-tillägg utvecklad av recalign.dev, och dess huvudfunktion är "Filter content by transparent, editable preference.".
Tilläggsskärmbilder
Ladda ner RecAlign-förlängningens CRX-fil
Ladda ner RecAlign-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | RecAlign |
ID | eedopfonifglenhkedconaljmbnaimej |
Officiell webbadress | https://chromewebstore.google.com/detail/recalign/eedopfonifglenhkedconaljmbnaimej |
Beskrivning | Filter content by transparent, editable preference. |
Filstorlek | 32.22 KB |
Antal Installationer | 168 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2023-04-13 |
Publiceringsdatum | 2023-04-13 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | recalign.dev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |