RecAlign

Filter content by transparent, editable preference.

Cos'è RecAlign?

RecAlign è un'estensione di Chrome sviluppata da recalign.dev, e la sua funzione principale è "Filter content by transparent, editable preference.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione RecAlign

Scarica i file di estensione RecAlign in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome RecAlign RecAlign
ID eedopfonifglenhkedconaljmbnaimej
URL Ufficiale https://chromewebstore.google.com/detail/recalign/eedopfonifglenhkedconaljmbnaimej
Descrizione Filter content by transparent, editable preference.
Dimensione del File 32.22 KB
Conteggio Installazioni 168
Versione Corrente 0.1.0
Ultimo Aggiornamento 2023-04-13
Data di Pubblicazione 2023-04-13
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore recalign.dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}