tabWindow - multi window vertical tabs

tabWindow - multi window vertical tabs

Multi-window vertical tab manager. save and restore tabs & windows with auto-saver. Never forget why this tab left open?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "96",
  "name": "tabWindow - multi window vertical tabs",
  "description": "Multi-window vertical tab manager. save and restore tabs & windows with auto-saver. Never forget why this tab left open?",
  "version": "2.2.6",
  "author": "Brahmastra App",
  "homepage_url": "https://tabmap.brahmastra.app/",
  "icons": {
    "16": "icon.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_icon": "icon.png"
  },
  "options_page": "options/index.html",
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl + M",
        "windows": "Ctrl + M",
        "mac": "Ctrl + M",
        "linux": "Ctrl + M"
      }
    },
    "switchWin": {
      "suggested_key": {
        "default": "Ctrl + Z"
      },
      "description": "Switch window"
    },
    "duplicateTab": {
      "suggested_key": {
        "default": "Ctrl + Y"
      },
      "description": "Duplicate current tab"
    }
  },
  "externally_connectable": {
    "matches": [
      "https://account.brahmastra.app/*"
    ]
  },
  "permissions": [
    "tabs",
    "tabGroups",
    "contextMenus",
    "storage",
    "unlimitedStorage"
  ]
}