Clutterfree for Anilist

Minimal extension to remove clutter from AniList notifications

Τι είναι το Clutterfree for Anilist;

Το Clutterfree for Anilist είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Miles Rayne, και η κύρια λειτουργία του είναι "Minimal extension to remove clutter from AniList notifications".

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

screenshot
screenshot

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

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

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

                        Clutterfree for Anilist is a minimalistic browser extension for removing clutter from AniList notifications.
Its core feature is the option to group similar notifications (such as activity likes) of the /notifications page on AniList into single items that can be expanded to show individual details when needed.                    

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

Όνομα Clutterfree for Anilist Clutterfree for Anilist
ID hfgmcmijjnccacoefjdndepfkbaejllb
Επίσημο URL https://chromewebstore.google.com/detail/clutterfree-for-anilist/hfgmcmijjnccacoefjdndepfkbaejllb
Περιγραφή Minimal extension to remove clutter from AniList notifications
Μέγεθος Αρχείου 17.81 KB
Αριθμός Εγκαταστάσεων 33
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2023-03-18
Ημερομηνία Δημοσίευσης 2023-03-18
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Miles Rayne
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clutterfree for Anilist",
    "description": "Minimal extension to remove clutter from AniList notifications",
    "version": "1.1.2",
    "author": "Miles Rayne",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/anilist.co\/*"
            ],
            "js": [
                "polyfill.js",
                "clutterfree.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/anilist.co\/*"
            ],
            "resources": [
                "css\/clutterfree.css"
            ]
        }
    ]
}