Pop Guard, Complete Browser Protection !!

Pop Guard, Complete Browser Protection !!

Blocks unwanted popups and ads on sites you visit. You will see a notification when any popup/ads is blocked.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pop Guard, Complete Browser Protection !!",
  "description": "Blocks unwanted popups and ads on sites you visit. You will see a notification when any popup/ads is blocked.",
  "version": "1.0.1.8",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Pop Guard, Complete Browser Protection !!",
    "default_popup": "pop.html"
  },
  "options_page": "options.html",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "icons": {
    "16": "img/icons/16.png",
    "32": "img/icons/32.png",
    "48": "img/icons/48.png",
    "64": "img/icons/64.png",
    "128": "img/icons/128.png"
  },
  "permissions": [
    "tabs",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "img/*",
    "css/*",
    "js/*",
    "fonts/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "adguard/adguard-content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "adguard/adguard-assistant.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ]
}