Reddit Watcher

Reddit Watcher

Watches subreddits for new posts, and notifies you when a new post is created.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reddit Watcher",
  "description": "Watches subreddits for new posts, and notifies you when a new post is created.",
  "version": "1.13.1",
  "browser_action": {
    "default_icon": "images/icon16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "http://reddit.com/*",
    "https://reddit.com/*",
    "alarms",
    "storage",
    "notifications"
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "80": "images/icon80.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "lib/jquery-1.12.0.min.js",
      "lib/notify.js",
      "background.js"
    ]
  }
}