Quick Tab

Quick Tab

Quickly switch to specific tab

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.1.3",
  "name": "Quick Tab",
  "short_name": "Quick Tab",
  "description": "Quickly switch to specific tab",
  "offline_enabled": true,
  "commands": {
    "switch-to-1": {
      "suggested_key": {
        "default": "Alt+1",
        "mac": "MacCtrl+1"
      },
      "description": "Switch to 1 tab"
    },
    "switch-to-2": {
      "suggested_key": {
        "default": "Alt+2",
        "mac": "MacCtrl+2"
      },
      "description": "Switch to 2 tab"
    },
    "switch-to-3": {
      "suggested_key": {
        "default": "Alt+3",
        "mac": "MacCtrl+3"
      },
      "description": "Switch to 3 tab"
    },
    "switch-to-4": {
      "suggested_key": {
        "default": "Alt+4",
        "mac": "MacCtrl+4"
      },
      "description": "Switch to 4 tab"
    },
    "switch-to-5": {
      "description": "Switch to 5 tab"
    },
    "switch-to-6": {
      "description": "Switch to 6 tab"
    },
    "switch-to-7": {
      "description": "Switch to 7 tab"
    },
    "switch-to-8": {
      "description": "Switch to 8 tab"
    },
    "switch-to-9": {
      "description": "Switch to 9 tab"
    }
  },
  "icons": {
    "16": "icon/cut-16.png",
    "48": "icon/cut-48.png",
    "128": "icon/cut-128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "js/event.js"
    ]
  },
  "permissions": [
    "tabs"
  ]
}