9anime Companion

A simple companion extension for 9anime

9anime Companion란 무엇입니까?

9anime Companion은(는) (lap00zza) Jewel Mahanta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple companion extension for 9anime"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

9anime Companion 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        9anime Companion adds these cool new features:

* Remove Ads/Popups
* Download All episodes
* MyAnimeList Integration
* Utility Bar
* Recently Watched list
* Toggle page elements (comments, you may also like etc.)
* Helpful keyboard shortcuts
  * s - Alternate search overlay (global)
  * t - Quickly scroll to player (only watch page)
* and quite a few more..

***

Privacy:
If you choose to use the MyAnimeList Integration, your MyAnimeList login information WILL BE stored LOCALLY on your computer using chrome.storage.local. Your data WILL NOT BE TRANSMITTED anywhere else.

***

9anime Companion is  free and open source, released under the MIT License.

***

Project Home:
https://github.com/lap00zza/9anime-Companion

If you have any issues, report here:
https://github.com/lap00zza/9anime-Companion/issues                    

확장 프로그램 기본 정보

이름 9anime Companion 9anime Companion
ID fopcehkidabibdmachbcpbgllhehknah
공식 URL https://chromewebstore.google.com/detail/9anime-companion/fopcehkidabibdmachbcpbgllhehknah
설명 A simple companion extension for 9anime
파일 크기 354 KB
설치 횟수 8,247
현재 버전 1.3.4
최근 업데이트 2017-11-27
출시 날짜 2017-11-27
평점 3.52/5 총 71 개의 평점
개발자 (lap00zza) Jewel Mahanta
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lap00zza/9anime-Companion
도움말 페이지 URL https://github.com/lap00zza/9anime-Companion/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "9anime Companion",
    "version": "1.3.4",
    "version_name": "1.3.4",
    "minimum_chrome_version": "55",
    "author": "Jewel Mahanta",
    "homepage_url": "https:\/\/github.com\/lap00zza\/9anime-Companion",
    "description": "A simple companion extension for 9anime",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/9anime.to\/watch\/*",
                "*:\/\/9anime.is\/watch\/*",
                "*:\/\/9anime.tv\/watch\/*",
                "*:\/\/9anime.ru\/watch\/*"
            ],
            "js": [
                "vendor\/jquery.js",
                "build\/js\/cscript_watchpage.bundle.js"
            ],
            "css": [
                "build\/css\/watch_page.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/9anime.to\/*",
                "*:\/\/9anime.is\/*",
                "*:\/\/9anime.tv\/*",
                "*:\/\/9anime.ru\/*"
            ],
            "js": [
                "build\/js\/cscript_global_pre.bundle.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/9anime.to\/*",
                "*:\/\/9anime.is\/*",
                "*:\/\/9anime.tv\/*",
                "*:\/\/9anime.ru\/*"
            ],
            "js": [
                "vendor\/jquery.js",
                "vendor\/toastr.js",
                "build\/js\/cscript_global.bundle.js"
            ],
            "css": [
                "build\/css\/global.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/myanimelist.net\/anime\/*"
            ],
            "js": [
                "site_integration\/myanimelist.js"
            ],
            "css": [
                "site_integration\/myanimelist.css"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "dashboard.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "downloads",
        "*:\/\/9anime.to\/*",
        "*:\/\/9anime.is\/*",
        "*:\/\/9anime.tv\/*",
        "*:\/\/9anime.ru\/*",
        "*:\/\/www.rapidvideo.com\/e\/*",
        "*:\/\/myanimelist.net\/anime\/*"
    ],
    "optional_permissions": [
        "https:\/\/myanimelist.net\/api\/*",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}