Tab Search

Tab Search

Allows easy searching of Tabs.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Search",
  "version": "1.0",
  "author": "Prakhar Agarwal",
  "description": "Allows easy searching of Tabs.",
  "manifest_version": 2,
  "icons": {
    "256": "chrome-tab-search-icon.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "chrome://favicon/"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'; img-src chrome://favicon;",
  "web_accessible_resources": [
    "widget.html"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "commands": {
    "execute_tab_search": {
      "description": "Show the Tab Search Box",
      "suggested_key": {
        "default": "Ctrl+Space"
      }
    }
  }
}