Tab-Manager

Tab-Manager

Organize tabs, groups and windows of the current profile

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_title": "Organize tabs, groups and windows"
  },
  "author": "Venu Madhav",
  "background": {
    "service_worker": "/src/js/background.js",
    "type": "module"
  },
  "description": "Organize tabs, groups and windows of the current profile",
  "icons": {},
  "manifest_version": 3,
  "name": "Tab-Manager",
  "options_ui": {
    "open_in_tab": false,
    "page": "/src/html/options.html"
  },
  "permissions": [
    "tabs",
    "tabGroups",
    "storage"
  ],
  "version": "1.0.0"
}