RSS Alarm

RSS Alarm

The simplest way to get notified about new feed entries.

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",
  "short_name": "RSS Alarm",
  "description": "The simplest way to get notified about new feed entries.",
  "version": "1.2",
  "permissions": [
    "http://*/",
    "https://*/",
    "notifications",
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/base.js",
      "js/popup.js",
      "js/background.js"
    ]
  },
  "options_page": "html/options.html",
  "browser_action": {
    "default_icon": {
      "19": "images/logo_19.png",
      "38": "images/logo_38.png",
      "48": "images/logo_48.png"
    },
    "default_title": "RSS Alarm",
    "default_popup": "html/popup.html"
  }
}