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
官方網址 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"
    ]
}