Hide it now!

Hide it now!

Hide unwanted element on any websites!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide it now!",
  "description": "Hide unwanted element on any websites!",
  "omnibox": {
    "keyword": "hide"
  },
  "icons": {
    "16": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "version": "1.0",
  "minimum_chrome_version": "9",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "mouseclick.js"
      ],
      "css": [
        "hide_element.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus"
  ]
}