Remove Screenshare Notification for Hangouts™

Remove Screenshare Notification for Hangouts™

Removes the ugly green notification bar at the top of Google Hangout windows when screensharing with someone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "The Master",
  "name": "Remove Screenshare Notification for Hangouts™",
  "description": "Removes the ugly green notification bar at the top of Google Hangout windows when screensharing with someone.",
  "manifest_version": 2,
  "version": "1.1",
  "icons": {
    "16": "thumbnail-16.png",
    "24": "thumbnail-24.png",
    "32": "thumbnail-32.png",
    "48": "thumbnail-48.png",
    "64": "thumbnail-64.png",
    "128": "thumbnail-128.png"
  },
  "permissions": [
    "*://plus.google.com/hangouts/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://plus.google.com/hangouts/*"
      ],
      "js": [
        "jquery.js",
        "background-min.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "jquery.js",
    "background-min.js",
    "thumbnail-16.png",
    "thumbnail-24.png",
    "thumbnail-32.png",
    "thumbnail-48.png",
    "thumbnail-64.png",
    "thumbnail-128.png"
  ]
}