tabby - fast tab switching

tabby - fast tab switching

Extension to search for and switch between tabs in seconds with a simple shortcut

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.1.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "70.0"
    }
  },
  "icons": {
    "16": "tabby_icon_16.png",
    "48": "tabby_icon_48.png",
    "128": "tabby_icon_128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_title": "tabby",
    "default_popup": "index.html",
    "theme_icons": [
      {
        "dark": "/icons/tabby_icon_eye_light_16.png",
        "light": "/icons/tabby_icon_eye_dark_16.png",
        "size": 16
      },
      {
        "dark": "/icons/tabby_icon_eye_light_48.png",
        "light": "/icons/tabby_icon_eye_dark_48.png",
        "size": 48
      },
      {
        "dark": "/icons/tabby_icon_eye_light_128.png",
        "light": "/icons/tabby_icon_eye_dark_128.png",
        "size": 128
      }
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "description": "__MSG_shortcutOpen__",
      "suggested_key": {
        "default": "Ctrl+Space",
        "mac": "Alt+Space"
      }
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}