WaniKani Companion

Your favorite Japanese learning app at a click away.

WaniKani Companion là gì?

WaniKani Companion là một tiện ích mở rộng Chrome được phát triển bởi Lucas P., và tính năng chính của nó là "Your favorite Japanese learning app at a click away.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng WaniKani Companion

Tải xuống các tệp mở rộng WaniKani Companion dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WaniKani Companion WaniKani Companion
ID plfjbbakjphlkdpcdpodaedhicoaloph
URL Chính Thức https://chromewebstore.google.com/detail/wanikani-companion/plfjbbakjphlkdpcdpodaedhicoaloph
Mô tả Your favorite Japanese learning app at a click away.
Kích Thước Tệp 150 KB
Số Lần Cài Đặt 1,329
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2021-07-07
Ngày Phát Hành 2017-01-09
Đánh Giá 3.86/5 Tổng số 28 Đánh Giá
Nhà Phát Triển Lucas P.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/naei/wanikani-companion
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}