Hey Listen

Hey Listen

Learn kanji while you procrastinate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "content_script/app.js"
      ],
      "css": [
        "content_script/style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Learn kanji while you procrastinate",
  "name": "Hey Listen",
  "version": "1.3.1",
  "web_accessible_resources": [
    "content_script/app.html",
    "content_script/style.css",
    "options_page/options.js",
    "options_page/options.html"
  ],
  "options_page": "options_page/options.html",
  "background": {
    "scripts": [
      "bg_script/wanakana.js",
      "bg_script/facts.js",
      "bg_script/background.js"
    ]
  },
  "icons": {
    "48": "icon.png"
  }
}