MyAlgorithm

Your personal recommendation feed - be in control of your algorithm

Τι είναι το MyAlgorithm;

Το MyAlgorithm είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jawerty, και η κύρια λειτουργία του είναι "Your personal recommendation feed - be in control of your algorithm".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης MyAlgorithm

Λήψη αρχείων επέκτασης MyAlgorithm σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα MyAlgorithm MyAlgorithm
ID imkkppomfljhnaaolbdgffnleejjbpjn
Επίσημο URL https://chromewebstore.google.com/detail/myalgorithm/imkkppomfljhnaaolbdgffnleejjbpjn
Περιγραφή Your personal recommendation feed - be in control of your algorithm
Μέγεθος Αρχείου 744 KB
Αριθμός Εγκαταστάσεων 92
Τρέχουσα Έκδοση 0.5.0
Τελευταία Ενημέρωση 2022-09-03
Ημερομηνία Δημοσίευσης 2022-07-19
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής jawerty
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jawerty/myAlgorithm
Διεύθυνση URL της Σελίδας Βοήθειας https://discord.gg/YmVzHUNfYd
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/jawerty/myAlgorithm/blob/main/README.md
Υποστηριζόμενες Γλώσσες 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"
    }
}