Quick Tab Switcher

Quick Tab Switcher

Press Ctr+I or Command+I (OS X) to open window. Quick Tab Switcher is a tab management browser extension for the Google Chrome…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Quick Tab Switcher",
  "description": "",
  "version": "0.0.4",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "open_tabs_window": {
      "suggested_key": {
        "default": "Ctrl+I",
        "mac": "Command+I"
      },
      "description": "Open Tab Switcher"
    }
  }
}