AniList Extras

Adds a few additional features to AniList.

Co je AniList Extras?

AniList Extras je rozšíření Chrome vyvinuté pilar6195, a jeho hlavní funkcí je „Adds a few additional features to AniList.“.

Snímky obrazovky rozšíření

screenshot

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

Stáhněte si soubory rozšíření AniList Extras 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í

                        - Adds character data from MyAnimeList since most of the time AniList does not have a complete character list.
- Adds OP/ED data from MyAnimeList.
- Toggle to display character/staff lists as grid (default) or as a list.
- Adds Anilist link to MyAnimeList pages.
- Adds the total amount of following, followers, forum threads, and forum comments a user has to the social tab of the user's profile.

More info can be found on the Github repo: https://github.com/pilar6195/AniList-Extras                    

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

Název AniList Extras AniList Extras
ID ahcnhicbflgjhemogkbiknblbogeemih
Oficiální URL https://chromewebstore.google.com/detail/anilist-extras/ahcnhicbflgjhemogkbiknblbogeemih
Popis Adds a few additional features to AniList.
Velikost souboru 15.96 KB
Počet instalací 1,000
Aktuální Verze 1.2.0
Poslední Aktualizace 2019-10-22
Datum Vydání 2019-10-22
Hodnocení 4.45/5 Celkem 11 Hodnocení
Vývojář pilar6195
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/pilar6195/AniList-Extras
URL Stránky Zásad Ochrany Soukromí https://pilar.moe/privacy
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AniList Extras",
    "description": "Adds a few additional features to AniList.",
    "version": "1.2.0",
    "minimum_chrome_version": "60.0.3112",
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/anilist.co\/*",
        "https:\/\/graphql.anilist.co\/*",
        "https:\/\/api.jikan.moe\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/anilist.co\/*",
                "https:\/\/myanimelist.net\/*"
            ],
            "js": [
                "polyfill.js",
                "anilist-extras.user.js"
            ],
            "run_at": "document_start"
        }
    ]
}