QuicKey – The quick tab switcher

QuicKey – The quick tab switcher

Add keyboard shortcuts to switch tabs with a Quicksilver-style search or a most recently used menu

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "QuicKey – The quick tab switcher",
  "short_name": "QuicKey",
  "version": "1.8.0",
  "description": "Add keyboard shortcuts to switch tabs with a Quicksilver-style search or a most recently used menu",
  "author": "John Dunning",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'none'",
  "minimum_chrome_version": "60",
  "permissions": [
    "tabs",
    "bookmarks",
    "history",
    "storage",
    "sessions"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon-19.png",
      "38": "img/icon-38.png"
    },
    "default_title": "QuicKey",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "incognito": "not_allowed",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "MacCtrl+Q"
      }
    },
    "1-previous-tab": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "MacCtrl+A"
      },
      "description": "Switch to the previous tab"
    },
    "2-next-tab": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "MacCtrl+S"
      },
      "description": "Switch to the next tab"
    },
    "30-toggle-recent-tabs": {
      "suggested_key": {
        "default": "Alt+Z",
        "mac": "MacCtrl+Z"
      },
      "description": "Switch instantly between the two most recent tabs"
    }
  },
  "offline_enabled": true,
  "browser_specific_settings": {
    "gecko": {
      "id": "{0b289d05-9030-47a6-813b-aa80bbf959f5}"
    }
  }
}