Popup Blocker by ΔᎥяωεв

Popup Blocker by ΔᎥяωεв

Popup blocker for Chrome, remove popups, popunders from most of streaming video players like:…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Popup Blocker by ΔᎥяωεв",
  "version": "1.2",
  "browser_action": {
    "default_icon": "icon128.png",
    "default_title": "Popup Blocker by ΔᎥяωεв",
    "permissions": [
      "tabs",
      "http://*/*",
      "https://*/*",
      "storage",
      "cookies"
    ]
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "home.html "
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "*.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}