Fast Tab Switch

Fast Tab Switch

Switch tabs by selecting the screenshot of a tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fast Tab Switch",
  "description": "Switch tabs by selecting the screenshot of a tab.",
  "version": "1.1",
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "logo_16.png",
    "32": "logo_32.png",
    "48": "logo_48.png",
    "64": "logo_64.png",
    "128": "logo_128.png"
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabCapture",
    "tabs"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+T"
      }
    }
  },
  "browser_action": {
    "default_icon": "logo_32.png",
    "default_title": "Fast Tab Switch - Alt+T"
  }
}