AniList Extras

Adds a few additional features to AniList.

AniList Extras란 무엇입니까?

AniList Extras은(는) pilar6195에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a few additional features to AniList."입니다.

확장 프로그램 스크린샷

screenshot

AniList Extras 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - 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                    

확장 프로그램 기본 정보

이름 AniList Extras AniList Extras
ID ahcnhicbflgjhemogkbiknblbogeemih
공식 URL https://chromewebstore.google.com/detail/anilist-extras/ahcnhicbflgjhemogkbiknblbogeemih
설명 Adds a few additional features to AniList.
파일 크기 15.96 KB
설치 횟수 1,000
현재 버전 1.2.0
최근 업데이트 2019-10-22
출시 날짜 2019-10-22
평점 4.45/5 총 11 개의 평점
개발자 pilar6195
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/pilar6195/AniList-Extras
개인정보 보호 정책 페이지 URL https://pilar.moe/privacy
지원되는 언어 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"
        }
    ]
}