Click and Hide

Click and Hide

Get rid off those pesky parts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Click and Hide",
  "version": "1.1024",
  "description": "Get rid off those pesky parts.",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "js": [
        "Hidethis.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/Hidelogo16.png",
      "24": "images/Hidelogo24.png",
      "32": "images/Hidelogo32.png",
      "48": "images/Hidelogo48.png"
    },
    "default_title": "The hider",
    "default_popup": "pop.html"
  },
  "icons": {
    "16": "images/Hidelogo16.png",
    "24": "images/Hidelogo24.png",
    "32": "images/Hidelogo32.png",
    "48": "images/Hidelogo48.png",
    "128": "images/Hidelogo128.png"
  }
}