Pop up blocker and anti malware for Chrome

Pop up blocker and anti malware for Chrome

The extension to block annoying pop-ups, underlying windows (popunders) and overlays. Browse without interference on all websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "short_name": "BlockPop",
  "manifest_version": 2,
  "version": "1.2.1",
  "author": "Dexter's lab",
  "default_locale": "en",
  "web_accessible_resources": [
    "*.jpg",
    "*.JPG",
    "*.PNG",
    "*.png",
    "panel.html"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon48.png",
    "default_title": "BlockPop Panel",
    "default_popup": "panel.html"
  },
  "background": {
    "scripts": [
      "src/lbr/jquery.min.js",
      "src/lbr/Util.js",
      "src/lbr/bg.js",
      "src/functions/tabs.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/lbr/container.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "src/lbr/jquery.min.js",
        "src/window/blocker.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "http://*/",
    "storage",
    "history",
    "activeTab",
    "tabs",
    "background",
    "webRequest",
    "webRequestBlocking",
    "nativeMessaging"
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'"
}