Popup Intercept - One Window

Popup Intercept - One Window

Intercept popup windows and force them into a tab of the main window. Options to select only the URL's that you would 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 Intercept - One Window",
  "version": "1.0",
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "description": "Intercept popup windows and force them into a tab of the main window. Options to select only the URL's that you would like.",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "one128.png",
    "default_title": "Popup Intercept - One Window"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "one16.png",
    "32": "one32.png",
    "64": "one64.png",
    "128": "one128.png"
  }
}