WaniKani Notifier Redux
Notifies you when you have more to study on WaniKani! Now with HTTPS support!
什么是WaniKani Notifier Redux?
WaniKani Notifier Redux是由Matthew Miller开发的Chrome扩展程序,该扩展的主要功能是“Notifies you when you have more to study on WaniKani! Now with HTTPS support!”。
扩展截图
下载WaniKani Notifier Redux扩展crx文件
下载WaniKani Notifier Redux扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Keep track of how many reviews are ready for you on WaniKani! Features: * Displays the total number of reviews available to study * Optionally displays a desktop notification * Mouse over the extension's icon to see the time of your next review * Click on the extension's icon to access WaniKani.com Note: This extension is a fork of t0asterb0t studios' WaniKani Notifier extension. I modified it to work with WaniKani's recent update to site-wide HTTPS, as well as changes in underling site structure. CHANGELOG: v0.3.2 - The badge showing number of available reviews should update itself according to the chosen refresh period, as well as when reviews are completed v0.3.1 - Tweaked some wording in Options v0.3.0 - Initial Release
扩展基本信息
名称 | WaniKani Notifier Redux |
ID | objmjhmkpipkgollnfnabdneiihdnafj |
官方URL | https://chromewebstore.google.com/detail/wanikani-notifier-redux/objmjhmkpipkgollnfnabdneiihdnafj |
简介 | Notifies you when you have more to study on WaniKani! Now with HTTPS support! |
文件大小 | 27.67 KB |
安装次数 | 204 |
当前版本 | 0.3.2 |
更新时间 | 2014-02-13 |
上架时间 | 2014-02-13 |
评分 | 3.86/5 共7次评分 |
开发者 | Matthew Miller |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon_128.png", "default_title": "WaniKani Notifier Redux" }, "content_scripts": [ { "js": [ "review_page.js" ], "matches": [ "https:\/\/www.wanikani.com\/review" ] } ], "default_locale": "en", "description": "__MSG_wanikaninotify_description__", "icons": { "128": "icon_128.png" }, "manifest_version": 2, "name": "__MSG_wanikaninotify_name__", "options_page": "options.html", "permissions": [ "alarms", "storage", "notifications", "https:\/\/www.wanikani.com\/api\/*" ], "version": "0.3.2", "web_accessible_resources": [ "icon_128.png" ] } |