Disable Tab Detach 2

Disable Tab Detach 2

Disable tab tearing. Prevents unintentionally detaching a tab from the window. When the tab is detached from the window, return it to the original position.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "2023.410.0",
  "author": "dlw@mcprv",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{e85f814a-b0a1-4ce4-9a40-5325da7ba84b}"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "96": "lib/disable.png"
    },
    "default_title": "__MSG_extension_name__"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "icons": {
    "96": "lib/disable.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "menus"
  ],
  "commands": {
    "toggle_addon": {
      "suggested_key": {},
      "description": "__MSG_toggle_addon__"
    },
    "move_to_new_window": {
      "suggested_key": {},
      "description": "__MSG_move_to_new_window__"
    }
  }
}