no fb tooltip

no fb tooltip

removes the bloody annoying facebook 'write a comment' tooltip

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "no fb tooltip",
  "version": "0.5",
  "description": "removes the bloody annoying facebook 'write a comment' tooltip",
  "manifest_version": 2,
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "icons": [
      "icon_128.png"
    ],
    "default_icon": "icon_128.png"
  },
  "content_scripts": [
    {
      "js": [
        "background.js"
      ],
      "matches": [
        "http://*.facebook.com/*",
        "https://*.facebook.com/*"
      ]
    }
  ]
}