Tab Combine/Split

Tab Combine/Split

This extension glues windows together.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "combineTabs.js",
      "splitTabs.js"
    ]
  },
  "browser_action": {
    "default_icon": "glueIcon.png",
    "default_title": "Glue tabs"
  },
  "commands": {
    "tab_glue": {
      "description": "Glue windows together",
      "suggested_key": {
        "default": "Alt+G"
      }
    },
    "tab_glue_all": {
      "description": "Glue windows together, including minimized windows",
      "suggested_key": {
        "default": "Alt+A"
      }
    },
    "tab_scissor_cut": {
      "description": "Split at selected tab",
      "suggested_key": {
        "default": "Alt+S"
      }
    }
  },
  "description": "This extension glues windows together.",
  "manifest_version": 2,
  "name": "Tab Combine/Split",
  "short_name": "Tab Combine/Split",
  "options_page": "options.html",
  "permissions": [
    "tabs"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2"
}