RecAlign

Filter content by transparent, editable preference.

Что такое RecAlign?

RecAlign - это расширение Chrome, разработанное recalign.dev, и его основная функция - "Filter content by transparent, editable preference.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения RecAlign

Скачайте файлы расширений RecAlign в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название RecAlign RecAlign
ID eedopfonifglenhkedconaljmbnaimej
Официальный URL https://chromewebstore.google.com/detail/recalign/eedopfonifglenhkedconaljmbnaimej
Описание Filter content by transparent, editable preference.
Размер файла 32.22 KB
Количество установок 168
Текущая Версия 0.1.0
Последнее Обновление 2023-04-13
Дата публикации 2023-04-13
Рейтинг 5.00/5 Всего 1 оценок
Разработчик recalign.dev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}