Tab Group Switch

Tab Group Switch

Save tab groups and switch between them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tab Group Switch",
  "version": "2.2.0",
  "description": "Switch between tab groups.",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "icons": {
    "48": "icons/tgs-48.png",
    "96": "icons/tgs-96.png"
  },
  "permissions": [
    "alarms",
    "downloads",
    "notifications",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/tgs-16.png",
      "32": "icons/tgs-32.png"
    },
    "default_title": "Tab Group Switch",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "default_locale": "en_US",
  "options_ui": {
    "page": "settings/settings.html",
    "open_in_tab": true,
    "browser_style": true
  }
}