Wiki Watchlist Notifier

Notifies you of new items on your watchlist
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wiki Watchlist Notifier",
  "description": "Notifies you of new items on your watchlist",
  "version": "0.121",
  "icons": {
    "16": "Wikimedia_Community-16.png",
    "48": "Wikimedia_Community-48.png",
    "128": "Wikimedia_Community-128.png"
  },
  "background": {
    "scripts": [
      "functions.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon-48.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "notifications",
    "http://*.wikimedia.org/*",
    "http://*.wikipedia.org/*"
  ],
  "web_accessible_resources": [
    "icon-48.png"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.wikimedia.com/*",
        "*://*.wikipedia.org/*"
      ],
      "js": [
        "observer.js"
      ],
      "run_at": "document_idle"
    }
  ]
}