RecAlign

Filter content by transparent, editable preference.

Wat is RecAlign?

RecAlign is een Chrome-extensie ontwikkeld door recalign.dev, en de belangrijkste functie is "Filter content by transparent, editable preference.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie RecAlign

Download RecAlign-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam RecAlign RecAlign
ID eedopfonifglenhkedconaljmbnaimej
Officiële URL https://chromewebstore.google.com/detail/recalign/eedopfonifglenhkedconaljmbnaimej
Beschrijving Filter content by transparent, editable preference.
Bestandsgrootte 32.22 KB
Aantal Installaties 168
Huidige Versie 0.1.0
Laatst Bijgewerkt 2023-04-13
Publicatiedatum 2023-04-13
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar recalign.dev
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}