RecAlign
Filter content by transparent, editable preference.
O que é RecAlign?
RecAlign é uma extensão do Chrome desenvolvida por recalign.dev, e sua principal característica é "Filter content by transparent, editable preference.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão RecAlign
Baixe arquivos de extensão RecAlign no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | RecAlign |
ID | eedopfonifglenhkedconaljmbnaimej |
URL Oficial | https://chromewebstore.google.com/detail/recalign/eedopfonifglenhkedconaljmbnaimej |
Descrição | Filter content by transparent, editable preference. |
Tamanho do Arquivo | 32.22 KB |
Contagem de Instalações | 168 |
Versão Atual | 0.1.0 |
Última Atualização | 2023-04-13 |
Data de Publicação | 2023-04-13 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | recalign.dev |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |