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.”。
扩展截图
下载WaniKani Companion扩展crx文件
下载WaniKani Companion扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" ] } } |