Tab Control

Tab Control

The holy grail of tab managers

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 Control",
  "description": "The holy grail of tab managers",
  "version": "1.3.6",
  "action": {
    "default_title": "Tab Control",
    "default_popup": "mainPopup/index.html"
  },
  "background": {
    "service_worker": "background/scripts/background.js"
  },
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "commands": {
    "TabSearcher.OpenTabSearcher": {
      "suggested_key": {
        "default": "Alt+Space",
        "mac": "Alt+Space",
        "windows": "Ctrl+Space"
      },
      "description": "Open Tab Searcher"
    },
    "TabSwitcher.OpenTabSwitcher": {
      "suggested_key": {
        "default": "Alt+Z",
        "mac": "Alt+Z",
        "windows": "Ctrl+Z"
      },
      "description": "Open Tab Switcher"
    }
  },
  "permissions": [
    "unlimitedStorage",
    "tabs",
    "activeTab",
    "history",
    "webNavigation",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}