Gone Pop-up Blocker

Gone Pop-up Blocker

Pop-up notification blocker

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Gone Pop-up Blocker",
  "version": "1.0.4",
  "description": "Pop-up notification blocker",
  "icons": {
    "16": "icons/icon_active_16.png",
    "32": "icons/icon_active_32.png",
    "48": "icons/icon_active_48.png",
    "128": "icons/icon_active_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/logo.png",
        "icons/icon_active_128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Gone Pop-up Blocker",
    "default_popup": "popups/popup.html"
  },
  "host_permissions": [
    "*://*.gonepopupblocker.com/*",
    "*://*.adgone.org/*",
    "*://*.gonesoftware.com/*"
  ],
  "permissions": [
    "storage",
    "tabs",
    "cookies",
    "alarms",
    "contentSettings",
    "contextMenus",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}