Friend Safari Notifier

Friend Safari Notifier

Get notified when a friend safari of interest is posted to r/friendsafari

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Friend Safari Notifier",
  "author": "Andrew Guenther",
  "description": "Get notified when a friend safari of interest is posted to r/friendsafari",
  "version": "1.1.1",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon128.png"
  },
  "permissions": [
    "http://www.reddit.com/r/friendsafari/",
    "alarms",
    "tabs",
    "storage"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "fs-notifier.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.reddit.com/r/friendsafari/new"
      ],
      "js": [
        "jquery.js",
        "fs-filter.js"
      ]
    }
  ]
}