RecAlign

Filter content by transparent, editable preference.

什么是RecAlign?

RecAlign是由recalign.dev开发的Chrome扩展程序,该扩展的主要功能是“Filter content by transparent, editable preference.”。

扩展截图

screenshot

下载RecAlign扩展crx文件

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