MyAlgorithm

Your personal recommendation feed - be in control of your algorithm

O que é MyAlgorithm?

MyAlgorithm é uma extensão do Chrome desenvolvida por jawerty, e sua principal característica é "Your personal recommendation feed - be in control of your algorithm".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão MyAlgorithm

Baixe arquivos de extensão MyAlgorithm 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

                        Own a personal recommendation feed based on your browsing habits.

myAlgorithm is a tool for taking control of your recommendations. It tracks and stores your browsing habits locally (all your data is stored safely in your browser) and generates recommended content from across the web (youtube videos, tweets, reddit posts and more). You can view and edit your algorithm as you browse the web. 

Now, you can add your own content sources instantly beyond the default content sources (twitter, youtube, quora, wikipedia etc.)

Join the discord if you're interested in contributing and growing the project https://discord.gg/YmVzHUNfYd
https://github.com/jawerty/myAlgorithm

If you enjoy this extension, please donate so I can build tools like this full time!
https://www.buymeacoffee.com/bjGHFVW355                    

Informações Básicas da Extensão

Nome MyAlgorithm MyAlgorithm
ID imkkppomfljhnaaolbdgffnleejjbpjn
URL Oficial https://chromewebstore.google.com/detail/myalgorithm/imkkppomfljhnaaolbdgffnleejjbpjn
Descrição Your personal recommendation feed - be in control of your algorithm
Tamanho do Arquivo 744 KB
Contagem de Instalações 92
Versão Atual 0.5.0
Última Atualização 2022-09-03
Data de Publicação 2022-07-19
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor jawerty
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jawerty/myAlgorithm
URL da Página de Ajuda https://discord.gg/YmVzHUNfYd
URL da Página de Política de Privacidade https://github.com/jawerty/myAlgorithm/blob/main/README.md
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MyAlgorithm",
    "description": "Your personal recommendation feed - be in control of your algorithm",
    "version": "0.5.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "dist\/content.bundle.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "storage"
    ],
    "action": {
        "default_icon": {
            "32": "popup_assets\/icon_32.png"
        },
        "default_title": "Click Me",
        "default_popup": "popup.html"
    }
}