Antititle

Antititle

Removes annoying title tags when mousing over any part of a webpage!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Antititle",
  "version": "0.6.0",
  "manifest_version": 2,
  "description": "Removes annoying title tags when mousing over any part of a webpage!",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "assets/icons/antititle-128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/icons/antititle-16.png",
    "32": "assets/icons/antititle-32.png",
    "48": "assets/icons/antititle-48.png",
    "128": "assets/icons/antititle-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "tabCapture"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "execute.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}