WaniKani Companion

Your favorite Japanese learning app at a click away.

WaniKani Companion क्या है?

WaniKani Companion Lucas P. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Your favorite Japanese learning app at a click away."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WaniKani Companion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        ]
    }
}