Pop up blocker - Poper Blocker

Pop up blocker - Poper Blocker

Poper Blocker blocks annoying popups and overlays. Improve your browsing experience!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "background": {
    "scripts": [
      "libs/jquery.js",
      "background.index.js"
    ]
  },
  "browser_action": {
    "default_icon": "/images/icon19.png",
    "default_popup": "action.htm",
    "default_title": "Poper Blocker"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "toast.css"
      ],
      "js": [
        "libs/jquery.js",
        "content.index.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "incognito": "spanning",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "options_page": "options.htm",
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "<all_urls>"
  ],
  "version": "1",
  "web_accessible_resources": [
    "images/*",
    "message.htm"
  ],
  "short_name": "Poper Blocker",
  "content_security_policy": "script-src 'self' https://google-analytics.com 'unsafe-eval'; object-src 'self'"
}