Popup Blocker Pro

Popup Blocker Pro

Blocks popups and popunders and makes you feel better.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.2",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "homepage_url": "http://popup-blocker.org",
  "icons": {
    "16": "/assets/images/icon16.png",
    "48": "/assets/images/icon48.png",
    "128": "/assets/images/icon128.png"
  },
  "background": {
    "service_worker": "/js/sw.js"
  },
  "action": {
    "default_icon": {
      "16": "/assets/images/icon16.png",
      "24": "/assets/images/icon24.png",
      "32": "/assets/images/icon32.png"
    },
    "default_popup": "/html/popup.html",
    "default_title": "Popup Blocker Pro"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "/assets/css/toast.css"
      ],
      "js": [
        "/js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/images/*.png"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "js/inject.js",
        "js/cancel-inject.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "incognito": "split",
  "options_page": "html/options.html",
  "permissions": [
    "storage",
    "webRequest",
    "declarativeNetRequest",
    "tabs",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}