MyAlgorithm

Your personal recommendation feed - be in control of your algorithm

¿Qué es MyAlgorithm?

MyAlgorithm es una extensión de Chrome desarrollada por jawerty, y su función principal es "Your personal recommendation feed - be in control of your algorithm".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión MyAlgorithm

Descarga archivos de extensión MyAlgorithm en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre MyAlgorithm MyAlgorithm
ID imkkppomfljhnaaolbdgffnleejjbpjn
URL Oficial https://chromewebstore.google.com/detail/myalgorithm/imkkppomfljhnaaolbdgffnleejjbpjn
Descripción Your personal recommendation feed - be in control of your algorithm
Tamaño del Archivo 744 KB
Cantidad de Instalaciones 92
Versión Actual 0.5.0
Última Actualización 2022-09-03
Fecha de Publicación 2022-07-19
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador jawerty
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jawerty/myAlgorithm
URL de la Página de Ayuda https://discord.gg/YmVzHUNfYd
URL de la Página de Política de Privacidad https://github.com/jawerty/myAlgorithm/blob/main/README.md
Idiomas Soportados 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"
    }
}