Popup Blocker for Edge™

Popup Blocker for Edge™

Strictly block all popup requests from any website

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "version": "1.0.1",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "background": {
    "page": "/bg/background.html"
  },
  "browser_action": {
    "default_popup": "ui/popup/popup.html"
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject/blocker.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject/iframe.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "homepage_url": "https://popup-blocker.freefinancetools.net/",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png",
    "512": "icons/512.png"
  },
  "options_ui": {
    "page": "ui/options/index.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "ui/*"
  ],
  "commands": {
    "allow-last-request": {
      "description": "__MSG_context_item2__"
    },
    "deny-last-request": {
      "description": "__MSG_context_item3__"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}