RSS Alarm

RSS Alarm

Get alerted when keywords pop up inside an RSS feed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RSS Alarm",
  "description": "Get alerted when keywords pop up inside an RSS feed",
  "version": "1.1.2",
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "RSS Alert"
  },
  "icons": {
    "16": "iconsActive/icon16.png",
    "19": "iconsActive/icon19.png",
    "38": "iconsActive/icon38.png",
    "48": "iconsActive/icon48.png",
    "128": "iconsActive/icon128.png"
  },
  "background": {
    "scripts": [
      "vendor/jquery.js",
      "vendor/lodash.js",
      "vendor/react.js",
      "background-compiled.js"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "alarms",
    "notifications",
    "https://ajax.googleapis.com/",
    "http://*/*"
  ]
}