Swift Tab Switcher

Swift Tab Switcher

Use shortcuts to quickly switch your current tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Swift Tab Switcher",
  "short_name": "Swift Tab Switcher",
  "description": "Use shortcuts to quickly switch your current tab.",
  "author": "Robby Bennett",
  "icons": {
    "16": "/assets/icon16.png",
    "32": "/assets/icon32.png",
    "48": "/assets/icon48.png",
    "128": "/assets/icon128.png"
  },
  "version": "3.2",
  "minimum_chrome_version": "112.0.5615.50",
  "action": {
    "default_icon": "/assets/icon128.png",
    "default_popup": "/options/options.html#popup"
  },
  "options_ui": {
    "page": "/options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabGroups",
    "storage"
  ],
  "background": {
    "service_worker": "/sw.js"
  },
  "commands": {
    "rightTab": {
      "description": "Right",
      "suggested_key": {
        "default": "Ctrl+Right",
        "mac": "Command+Right"
      }
    },
    "leftTab": {
      "description": "Left",
      "suggested_key": {
        "default": "Ctrl+Left",
        "mac": "Command+Left"
      }
    }
  }
}