Tab Search

Tab Search

This extension can be used search through your open tabs and switch to it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Search",
  "description": "This extension can be used search through your open tabs and switch to it",
  "version": "1.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Tab Search",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "windows": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      }
    }
  }
}