Examine source code of CTRL - Tab Switcher

Inspect and view changes in CTRL - 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
{
  "manifest_version": 2,
  "name": "CTRL - Tab Switcher",
  "version": "1.0",
  "description": "Switch quickly between tabs, by pressing control + the first letter of a domain.",
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "48": "icon-48.jpeg",
    "96": "icon-96.jpeg"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e83924bd-f75b-47f8-9f70-4f9ab0a30ce3}"
    }
  }
}