WaniKani Companion

Your favorite Japanese learning app at a click away.

O que é WaniKani Companion?

WaniKani Companion é uma extensão do Chrome desenvolvida por Lucas P., e sua principal característica é "Your favorite Japanese learning app at a click away.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão WaniKani Companion

Baixe arquivos de extensão WaniKani Companion no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome WaniKani Companion WaniKani Companion
ID plfjbbakjphlkdpcdpodaedhicoaloph
URL Oficial https://chromewebstore.google.com/detail/wanikani-companion/plfjbbakjphlkdpcdpodaedhicoaloph
Descrição Your favorite Japanese learning app at a click away.
Tamanho do Arquivo 150 KB
Contagem de Instalações 1,329
Versão Atual 2.2
Última Atualização 2021-07-07
Data de Publicação 2017-01-09
Classificação 3.86/5 Total de 28 Avaliações
Desenvolvedor Lucas P.
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/naei/wanikani-companion
Idiomas Suportados 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"
        ]
    }
}