WaniKani Notifier Redux

WaniKani Notifier Redux

Notifies you when you have more to study on WaniKani! Now with HTTPS support!

Merlin
Additional files are visible only to premium users

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