Tab Glue

Tab Glue

This extension glues windows together.

Merlin
Additional files are visible only to premium users

manifest.json


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