Merge Windows

Merge Windows

Merges the tabs from multiple windows together into one window. Extension won't show context menu item when there aren't more than one window of the same type to merge together. Private windows will only merge with private windows not normal.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "description": "Merge multiple windows together",
  "homepage_url": "https://github.com/jonathanKingston/merge-windows",
  "manifest_version": 2,
  "name": "Merge Windows",
  "version": "1.0.3resigned1",
  "icons": {
    "96": "merge.svg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{6d0b1446-4a7c-40e9-9bcf-568a8e26d00b}"
    }
  }
}