Disable Tab Detach

Disable Tab Detach

Returns a tab to its original window and position on detach

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "0.0.6resigned1",
  "author": "Matt Hensman <[email protected]>",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "55.0"
    }
  },
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "commands": {
    "moveTabToNewWindow": {
      "suggested_key": {
        "default": "Ctrl+Alt+N"
      },
      "description": "Move current tab to a new window"
    },
    "pauseExtension": {
      "suggested_key": {
        "default": "Ctrl+Alt+P"
      },
      "description": "Temporarily pause extension"
    }
  },
  "default_locale": "en",
  "manifest_version": 2,
  "page_action": {},
  "permissions": [
    "menus",
    "tabs"
  ]
}