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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}