SuperTabs

SuperTabs

SuperTabs allows you to list and search current open tabs and switch to them quickly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SuperTabs",
  "description": "SuperTabs allows you to list and search current open tabs and switch to them quickly.",
  "version": "1.0.1",
  "browser_action": {
    "default_icon": {
      "16": "assets/icon_16.png",
      "32": "assets/icon_32.png",
      "64": "assets/icon_64.png",
      "128": "assets/icon_128.png"
    },
    "default_popup": "popup.html",
    "default_title": "SuperTabs"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+E",
        "mac": "Command+E"
      },
      "global": true
    }
  },
  "permissions": [
    "tabs",
    "activeTab"
  ]
}