AniList Modifier

Add scores to AniList activity feed

Co to jest AniList Modifier?

AniList Modifier to rozszerzenie Chrome opracowane przez Gregor Maclaine, a jego główną funkcją jest „Add scores to AniList activity feed”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AniList Modifier

Pobierz pliki rozszerzeń AniList Modifier 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

                        Chrome extension for Anilist that adds score information to activity feed, such as when someone completes or drops a show or manga. The extension allows all scoring formats such as number based, stars, or smiley faces.                    

Podstawowe informacje o rozszerzeniu

Nazwa AniList Modifier AniList Modifier
ID knclmpfhlbdlndgplhbnpajhpjmklfpi
Oficjalny URL https://chromewebstore.google.com/detail/anilist-modifier/knclmpfhlbdlndgplhbnpajhpjmklfpi
Opis Add scores to AniList activity feed
Rozmiar pliku 67.9 KB
Liczba instalacji 27
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2023-07-30
Data Publikacji 2023-07-08
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper Gregor Maclaine
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gregormaclaine/AniListModifier
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AniList Modifier",
    "description": "Add scores to AniList activity feed",
    "version": "1.2.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/anilist.co\/*"
            ],
            "js": [
                "injection.js"
            ],
            "css": []
        }
    ],
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png",
        "512": "icons\/512.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/index.html",
        "default_icon": {
            "48": "icons\/48.png"
        }
    },
    "permissions": [
        "storage"
    ]
}