Tabber

Tabber

Tab switcher with fuzzy search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tabber",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Tab switcher with fuzzy search.",
  "author": "Tomas Escobar",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Tabber",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+K",
        "windows": "Ctrl+K",
        "linux": "Ctrl+K",
        "chromeos": "Ctrl+K",
        "mac": "Command+K"
      }
    }
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}