(NO)tifications

(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "(NO)tifications",
  "version": "1.0.0.2",
  "manifest_version": 2,
  "description": "Hide the unread messages title bar alerts on distracting websites.",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*",
        "*://*.facebook.com/*",
        "*://twitter.com/*",
        "*://plus.google.com/*"
      ],
      "js": [
        "hide_count.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'"
}