TabSearch

TabSearch

Search through your tabs, across all windows, and jump to them easily. Usable via a browser action or the omnibox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/ts16.png",
      "24": "assets/ts24.png",
      "32": "assets/ts32.png"
    },
    "default_title": "TabSearch",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+F"
      }
    }
  },
  "description": "Search through your tabs, across all windows, and jump to them easily. Usable via a browser action or the omnibox.",
  "icons": {
    "16": "assets/ts16.png",
    "48": "assets/ts48.png",
    "128": "assets/ts128.png"
  },
  "name": "TabSearch",
  "omnibox": {
    "keyword": "ts"
  },
  "offline_enabled": true,
  "permissions": [
    "tabs"
  ],
  "short_name": "TabSearch",
  "version": "0.6",
  "manifest_version": 2
}