Google+ Hovercard Blocker

Google+ Hovercard Blocker

Hide away the Google Plus profile Hovercards that are shown when you hover the mouse above anyone's name.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "version": "1.3.2",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://plus.google.com/*"
      ],
      "css": [
        "mystyles.css"
      ],
      "js": [
        "myscript.js"
      ],
      "all_frames": true
    }
  ],
  "page_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_title": "__MSG_action_title__"
  },
  "permissions": [
    "tabs",
    "http://*/*"
  ]
}