Simple Notifications for Facebook

Simple Notifications for Facebook

Gives you a red bordred notification even with the social media platform Facebook is pinned.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Notifications for Facebook",
  "description": "Gives you a red bordred notification even with the social media platform Facebook is pinned.",
  "version": "1.7",
  "author": "Brian Dawson",
  "permissions": [
    "*://*.facebook.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/facebook.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icon2.ico"
  ],
  "icons": {
    "16": "icon2.png",
    "48": "icon2.png",
    "128": "icon2.png"
  }
}