WaniKani Notifier

Notifies you when you have more to study on WaniKani!

What is WaniKani Notifier?

WaniKani Notifier is a Chrome extension developed by t0asterb0t studios, and its main feature is "Notifies you when you have more to study on WaniKani!".

Extension Screenshots

screenshot

Download WaniKani Notifier Extension CRX File

Download WaniKani Notifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Want to keep track of when you need to review on WaniKani without keeping a tab open all the tab? Now you can!

Latest version (0.3.0):
* Updated to support API version 1.4
* Badge updates as review session progresses
* Fixed Chrome notifications

Features:
* Updates a badge on the extension's icon when you have more to study
* Optionally displays a desktop notification as well
* Mouse over the extension's icon to see the time of your next review
* Clicking on the extension's icon redirects to WaniKani.com
* Settings sync with Chrome Sync, so all of your synced Chrome browsers will be set up automatically
* Memory efficient: Uses event pages to unload the extension when it's not busy                    

Extension Basic Information

Name WaniKani Notifier WaniKani Notifier
ID oolkffcgenmpgkfknfjfkhgbdnkobnga
Official URL https://chromewebstore.google.com/detail/wanikani-notifier/oolkffcgenmpgkfknfjfkhgbdnkobnga
Description Notifies you when you have more to study on WaniKani!
File Size 25.59 KB
Installation Count 70
Current Version 0.3.0
Last Updated 2015-12-20
Publish Date 2015-12-19
Rating 4.00/5 Total 4 Ratings
Developer t0asterb0t studios
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_wanikaninotify_name__",
    "version": "0.3.0",
    "manifest_version": 2,
    "description": "__MSG_wanikaninotify_description__",
    "default_locale": "en",
    "icons": {
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.wanikani.com\/review\/session"
            ],
            "js": [
                "review_page.js"
            ]
        }
    ],
    "permissions": [
        "alarms",
        "storage",
        "notifications",
        "https:\/\/www.wanikani.com\/api\/*"
    ],
    "browser_action": {
        "default_title": "WaniKani Notifier",
        "default_icon": "icon_128.png"
    },
    "web_accessible_resources": [
        "icon_128.png"
    ]
}