RecAlign

Filter content by transparent, editable preference.

RecAlign क्या है?

RecAlign recalign.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filter content by transparent, editable preference."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RecAlign एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}