Easy workspaces

Easy workspaces

Tabs and windows manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "4.6.0",
  "manifest_version": 3,
  "permissions": [
    "tabGroups",
    "tabs",
    "storage",
    "sidePanel"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "types.js",
        "utils.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module",
    "minimum_chrome_version": "92"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon16.png"
    },
    "default_popup": "index.html",
    "default_title": "Easy workspaces"
  },
  "default_locale": "en",
  "side_panel": {
    "default_path": "index.html"
  }
}