Popup To Tab

Popup To Tab

Turns all popup windows into tabs and merge them to the main window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "author": "Terry",
  "version": "0.2.3",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "icon_16.png",
    "24": "icon_24.png",
    "48": "icon_48.png",
    "96": "icon_96.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon_16.png",
      "24": "icon_24.png",
      "48": "icon_48.png",
      "96": "icon_96.png"
    }
  },
  "permissions": [
    "notifications"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}