Examine source code of Swift Tab Switcher

Inspect and view changes in Swift Tab Switcher source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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.3",
  "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"
      }
    }
  }
}