Group Manager

Group Manager

Provides the user with a simple menu to quickly and efficiently manage every group.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Group Manager",
  "description": "Provides the user with a simple menu to quickly and efficiently manage every group.",
  "version": "1.1",
  "version_name": "1.1 alpha",
  "manifest_version": 3,
  "icons": {
    "128": "./img/icon.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "linux": "Ctrl+Shift+Z",
        "windows": "Ctrl+Shift+Z",
        "mac": "Alt+Shift+Z"
      }
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Manage Groups...",
    "default_popup": "popup.html",
    "default_icons": {
      "16": "./img/icon-16x16.png",
      "32": "./img/icon-32x32.png",
      "48": "./img/icon-48x48.png",
      "128": "./img/icon-128x128.png"
    }
  },
  "permissions": [
    "tabs",
    "tabGroups"
  ]
}