WowHead IFrameBlocker

WowHead IFrameBlocker

This extension stops wowhead from using iframes and other advertising annoyances.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WowHead IFrameBlocker",
  "description": "This extension stops wowhead from using iframes and other advertising annoyances.",
  "version": "1.4",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.wowhead.com/*"
      ],
      "js": [
        "jquery.js",
        "injector.js"
      ],
      "css": [
        "injector.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "*://*.wowhead.com/*"
  ]
}