Modal Blocker

Modal Blocker

Remove (some) annoying modal popups

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Modal Blocker",
  "short_name": "ModalBlock",
  "description": "Remove (some) annoying modal popups",
  "version": "1.0",
  "icons": {
    "16": "img/modal16.png",
    "48": "img/modal48.png",
    "128": "img/modal128.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ]
    }
  ]
}