Weasyl Notifier

Weasyl Notifier

Displays the number of Weasyl messages the user has.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Weasyl Notifier",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Displays the number of Weasyl messages the user has.",
  "icons": {
    "128": "Icon.png"
  },
  "browser_action": {
    "default_title": "Weasyl Notifier",
    "default_icon": "Icon.png",
    "default_popup": "popover.html"
  },
  "background": {
    "page": "global.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.weasyl.com/*",
        "https://www.weasyl.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "homepage_url": "http://www.sunookitsune.net/",
  "options_page": "options.html",
  "permissions": [
    "https://www.weasyl.com/"
  ],
  "short_name": "Weasyl Notifier"
}