Clutterfree for Anilist

Minimal extension to remove clutter from AniList notifications

Co to jest Clutterfree for Anilist?

Clutterfree for Anilist to rozszerzenie Chrome opracowane przez Miles Rayne, a jego główną funkcją jest „Minimal extension to remove clutter from AniList notifications”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Clutterfree for Anilist

Pobierz pliki rozszerzeń Clutterfree for Anilist w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Clutterfree for Anilist Clutterfree for Anilist
ID hfgmcmijjnccacoefjdndepfkbaejllb
Oficjalny URL https://chromewebstore.google.com/detail/clutterfree-for-anilist/hfgmcmijjnccacoefjdndepfkbaejllb
Opis Minimal extension to remove clutter from AniList notifications
Rozmiar pliku 17.81 KB
Liczba instalacji 33
Aktualna Wersja 1.1.2
Ostatnia Aktualizacja 2023-03-18
Data Publikacji 2023-03-18
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Miles Rayne
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}