AniList Modifier

Add scores to AniList activity feed

Co je AniList Modifier?

AniList Modifier je rozšíření Chrome vyvinuté Gregor Maclaine, a jeho hlavní funkcí je „Add scores to AniList activity feed“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření AniList Modifier

Stáhněte si soubory rozšíření AniList Modifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název AniList Modifier AniList Modifier
ID knclmpfhlbdlndgplhbnpajhpjmklfpi
Oficiální URL https://chromewebstore.google.com/detail/anilist-modifier/knclmpfhlbdlndgplhbnpajhpjmklfpi
Popis Add scores to AniList activity feed
Velikost souboru 67.9 KB
Počet instalací 27
Aktuální Verze 1.2.1
Poslední Aktualizace 2023-07-30
Datum Vydání 2023-07-08
Hodnocení 4.67/5 Celkem 3 Hodnocení
Vývojář Gregor Maclaine
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/gregormaclaine/AniListModifier
Podporované Jazyky 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"
    ]
}