MyAlgorithm

Your personal recommendation feed - be in control of your algorithm

Was ist MyAlgorithm?

MyAlgorithm ist eine Chrome-Erweiterung, die von jawerty entwickelt wurde, und ihr Hauptmerkmal ist "Your personal recommendation feed - be in control of your algorithm".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

MyAlgorithm-Erweiterungs-CRX-Datei herunterladen

Laden Sie MyAlgorithm-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name MyAlgorithm MyAlgorithm
ID imkkppomfljhnaaolbdgffnleejjbpjn
Offizielle URL https://chromewebstore.google.com/detail/myalgorithm/imkkppomfljhnaaolbdgffnleejjbpjn
Beschreibung Your personal recommendation feed - be in control of your algorithm
Dateigröße 744 KB
Installationsanzahl 92
Aktuelle Version 0.5.0
Letztes Update 2022-09-03
Veröffentlichungsdatum 2022-07-19
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler jawerty
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/jawerty/myAlgorithm
Hilfeseite URL https://discord.gg/YmVzHUNfYd
URL der Datenschutzrichtlinien-Seite https://github.com/jawerty/myAlgorithm/blob/main/README.md
Unterstützte Sprachen 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"
    }
}