GoTo Tab

GoTo Tab

Productivity focused extension that helps you manage browser tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "GoTo Tab",
  "description": "Productivity focused extension that helps you manage browser tabs",
  "version": "2.0.0",
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_icon": "assets/images/icon_128.png",
    "default_popup": "popup.html",
    "default_title": "Go to Tab"
  },
  "icons": {
    "16": "assets/images/icon_16.png",
    "48": "assets/images/icon_128.png",
    "128": "assets/images/icon_128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+K",
        "mac": "Command+Shift+K",
        "chromeos": "Ctrl+Shift+K",
        "linux": "Ctrl+Shift+K"
      }
    }
  },
  "manifest_version": 2,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}