WaniKani Notifier

WaniKani Notifier

Notifies you when you have more to study on WaniKani!

Additional files are visible only to premium users

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"
  ]
}