SFM Notifications

SFM Notifications

The SFM Notifications Chrome Extension keeps members up to date with everything going on at SFM.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SFM Notifications",
  "version": "2.6.6",
  "description": "The SFM Notifications Chrome Extension keeps members up to date with everything going on at SFM.",
  "permissions": [
    "http://notify.thesfm.com/*",
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "sample-48.png",
    "128": "sample-128.png"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ]
}