Popup To Tab

Popup To Tab

Turns all popup windows into tabs (of the current window). Simply right-click on any tab and choose 'Move Popups Here'.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "author": "Terry",
  "version": "0.2.2",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "24": "icon_24.png",
    "48": "icon_48.png",
    "96": "icon_96.png"
  },
  "permissions": [
    "contextMenus",
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  }
}