RSS Alert

RSS Alert

Notifies user of new posts in RSS feeds

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RSS Alert",
  "version": "0.3",
  "manifest_version": 2,
  "description": "Notifies user of new posts in RSS feeds",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "browser_action": {
    "default_icon": "19.png",
    "default_title": "RSS Alert",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "content_security_policy": "script-src 'self' https://www.google.com https://ssl.google-analytics.com; object-src 'self'",
  "homepage_url": "https://github.com/adamzr/RSS-Alert",
  "permissions": [
    "notifications",
    "https://www.google.com/*",
    "https://ssl.google-analytics.com/*",
    "unlimitedStorage",
    "storage"
  ]
}