Tab Butler - A full-featured Tab Manager

Tab Butler - A full-featured Tab Manager

A tab manager at your service.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tab Butler - A full-featured Tab Manager",
  "short_name": "Tab Butler",
  "author": "Mitchell Mark-George",
  "version": "1.0.0.6",
  "version_name": "1.0.0-beta.4",
  "description": "A tab manager at your service.",
  "permissions": [
    "tabs",
    "scripting",
    "history"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "offline_enabled": true,
  "icons": {
    "48": "icons/Tab Butler Logo 48.png",
    "128": "icons/Tab Butler Logo 128.png"
  },
  "minimum_chrome_version": "88",
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "content/content.js"
      ]
    }
  ],
  "commands": {
    "toggle-tab-search": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Ctrl+Shift+Space",
        "windows": "Ctrl+Shift+Space",
        "linux": "Ctrl+Shift+Space"
      },
      "description": "Toggle the Tab Search Modal in the current tab"
    },
    "toggle-tab-actions": {
      "suggested_key": {
        "default": "Alt+Shift+Space",
        "windows": "Alt+Shift+K",
        "linux": "Alt+Shift+K",
        "mac": "Alt+Shift+Space"
      },
      "description": "Toggle Tab Actions Modal in the current tab"
    },
    "toggle-tab-history": {
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "MacCtrl+Shift+H",
        "windows": "Ctrl+Shift+H",
        "linux": "Ctrl+Shift+H"
      },
      "description": "Toggle Tab History Modal in the current tab"
    }
  }
}