WaniKani Review Notifier

WaniKani Review Notifier

Displays a colored icon when reviews and lessons are ready on WaniKani

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WaniKani Review Notifier",
  "version": "1.0.5",
  "options_page": "options.html",
  "description": "Displays a colored icon when reviews and lessons are ready on WaniKani",
  "icons": {
    "128": "icons/red.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "icons/grey.png"
    }
  },
  "author": "Keavon Chambers",
  "background": {
    "scripts": [
      "wanikani.js"
    ]
  },
  "permissions": [
    "background",
    "storage",
    "https://www.wanikani.com/api/*"
  ]
}