WaniKani Companion
Your favorite Japanese learning app at a click away.
Qu'est-ce que WaniKani Companion ?
WaniKani Companion est une extension Chrome développée par Lucas P., et sa fonction principale est "Your favorite Japanese learning app at a click away.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WaniKani Companion
Téléchargez les fichiers d'extension WaniKani Companion au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | WaniKani Companion |
ID | plfjbbakjphlkdpcdpodaedhicoaloph |
URL Officiel | https://chromewebstore.google.com/detail/wanikani-companion/plfjbbakjphlkdpcdpodaedhicoaloph |
Description | Your favorite Japanese learning app at a click away. |
Taille du Fichier | 150 KB |
Nombre d'Installations | 1,329 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2021-07-07 |
Date de Publication | 2017-01-09 |
Évaluation | 3.86/5 Total 28 Évaluations |
Développeur | Lucas P. |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/naei/wanikani-companion |
Langues Prises en Charge | 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" ] } } |