MyAlgorithm

Your personal recommendation feed - be in control of your algorithm

Cos'è MyAlgorithm?

MyAlgorithm è un'estensione di Chrome sviluppata da jawerty, e la sua funzione principale è "Your personal recommendation feed - be in control of your algorithm".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione MyAlgorithm

Scarica i file di estensione MyAlgorithm in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome MyAlgorithm MyAlgorithm
ID imkkppomfljhnaaolbdgffnleejjbpjn
URL Ufficiale https://chromewebstore.google.com/detail/myalgorithm/imkkppomfljhnaaolbdgffnleejjbpjn
Descrizione Your personal recommendation feed - be in control of your algorithm
Dimensione del File 744 KB
Conteggio Installazioni 92
Versione Corrente 0.5.0
Ultimo Aggiornamento 2022-09-03
Data di Pubblicazione 2022-07-19
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore jawerty
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jawerty/myAlgorithm
URL della Pagina di Aiuto https://discord.gg/YmVzHUNfYd
URL della Pagina della Politica sulla Privacy https://github.com/jawerty/myAlgorithm/blob/main/README.md
Lingue Supportate 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"
    }
}