Jump-To-TabN

Jump-To-TabN

Jump to specific tab with shortcut keys

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Jump-To-TabN",
  "short_name": "Jump-To-TabN",
  "version": "1.1.0",
  "description": "Jump to specific tab with shortcut keys",
  "author": "Sigo H, [email protected]",
  "homepage_url": "https://github.com/sigoden/jump-to-tabs",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "minimum_chrome_version": "55.0.2872.0",
  "permissions": [
    "tabs"
  ],
  "offline_enabled": true,
  "commands": {
    "jump-tab-1": {
      "description": "Jump to tab 1"
    },
    "jump-tab-2": {
      "description": "Jump to tab 2"
    },
    "jump-tab-3": {
      "description": "Jump to tab 3"
    },
    "jump-tab-4": {
      "description": "Jump to tab 4"
    },
    "jump-tab-5": {
      "description": "Jump to tab 5"
    },
    "jump-tab-6": {
      "description": "Jump to tab 6"
    },
    "jump-tab-7": {
      "description": "Jump to tab 7"
    },
    "jump-tab-8": {
      "description": "Jump to tab 8"
    },
    "jump-tab-9": {
      "description": "Jump to last tab"
    }
  }
}