Tab Group Saver - Save and Manage Tab Groups

Tab Group Saver - Save and Manage Tab Groups

Tab Group Saver is a chrome extension that enables you to suspend and manage your tabs and tab groups. With Tab Group Saver, you…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.12",
  "name": "Tab Group Saver - Save and Manage Tab Groups",
  "manifest_version": 3,
  "minimum_chrome_version": "89",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-48.png"
  },
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "icon-128.png",
        "icon-48.png",
        "icon-16.png"
      ],
      "matches": []
    }
  ],
  "permissions": [
    "tabs",
    "tabGroups",
    "storage"
  ],
  "host_permissions": [
    "https://api-js.mixpanel.com/*"
  ]
}