WaniKani Companion

Your favorite Japanese learning app at a click away.

WaniKani Companion란 무엇입니까?

WaniKani Companion은(는) Lucas P.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Your favorite Japanese learning app at a click away."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        WaniKani Companion is the fastest way to access to your favorite Japanese learning app.

## Features

* Profile overview: see your profile summary at a glance (name,, level, lessons, reviews, upcoming reviews countdown, and SRS progression).
* Badge notifications: be notified of your available lessons and reviews on the extension's icon.
* Desktop notifications: be notified of your lessons and reviews directly on your desktop.
* Chrome sync integration: the user settings are saved across all your Chrome's instances.
* WaniKani website integration: display all of WaniKani directly from the extension tab (dashboard, lessons, reviews...).
* User scripts improvements (extension + standalone HTTPS WaniKani website): the "item info" panel is auto-expanded on reviews et lessons quizzes.

/!\ This app is integrating a frame of the official HTTPS WaniKani website (https://www.wanikani.com); Using another WaniKani extension at the same time may affect your experience.

## Notice

All sources are available on GitHub: https://github.com/naei/wanikani-companion
The artistic content (app icons, default avatar, loading screen, and SRS progression icons) and https://www.wanikani.com are the property of Tofugu LLC.

Thanks to WaniKani staff and contributors for their amazing work!                    

확장 프로그램 기본 정보

이름 WaniKani Companion WaniKani Companion
ID plfjbbakjphlkdpcdpodaedhicoaloph
공식 URL https://chromewebstore.google.com/detail/wanikani-companion/plfjbbakjphlkdpcdpodaedhicoaloph
설명 Your favorite Japanese learning app at a click away.
파일 크기 150 KB
설치 횟수 1,329
현재 버전 2.2
최근 업데이트 2021-07-07
출시 날짜 2017-01-09
평점 3.86/5 총 28 개의 평점
개발자 Lucas P.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/naei/wanikani-companion
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WaniKani Companion",
    "version": "2.2",
    "description": "Your favorite Japanese learning app at a click away.",
    "browser_action": {
        "default_title": "WaniKani Companion",
        "default_icon": "\/img\/wanikani\/icon.png",
        "default_popup": "\/html\/home.html"
    },
    "icons": {
        "128": "\/img\/wanikani\/icon.png"
    },
    "permissions": [
        "*:\/\/*.wanikani.com\/",
        "notifications",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.wanikani.com\/*"
            ],
            "js": [
                "\/js\/web-content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "\/js\/lib\/moment.min.js",
            "\/js\/lib\/webtoolkit.md5.js",
            "\/js\/helper.js",
            "\/js\/background.js"
        ]
    }
}