Page Blocker

Page Blocker

Block new tabs or windows from opening when it is turned on.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Page Blocker",
  "description": "Block new tabs or windows from opening when it is turned on.",
  "version": "1.0.2",
  "browser_action": {
    "default_title": "Turn On Page Blocker",
    "default_icon": "inactive-32.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "inactive-16.png",
    "32": "inactive-32.png",
    "128": "inactive-128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "webNavigation",
    "http://*/*",
    "https://*/*"
  ]
}