RecAlign

Filter content by transparent, editable preference.

Co to jest RecAlign?

RecAlign to rozszerzenie Chrome opracowane przez recalign.dev, a jego główną funkcją jest „Filter content by transparent, editable preference.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia RecAlign

Pobierz pliki rozszerzeń RecAlign w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa RecAlign RecAlign
ID eedopfonifglenhkedconaljmbnaimej
Oficjalny URL https://chromewebstore.google.com/detail/recalign/eedopfonifglenhkedconaljmbnaimej
Opis Filter content by transparent, editable preference.
Rozmiar pliku 32.22 KB
Liczba instalacji 168
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2023-04-13
Data Publikacji 2023-04-13
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper recalign.dev
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}