PinTabs: Project-based tab management

PinTabs: Project-based tab management

📌 A browser extension, helps you manage your tabs from the perspective of projects (or workspaces).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "version": "0.0.2",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage",
    "tabs",
    "tabGroups",
    "alarms",
    "unlimitedStorage",
    "system.cpu"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "commands": {
    "command1": {
      "suggested_key": {
        "default": "Ctrl+Shift+G",
        "mac": "Command+Ctrl+G"
      },
      "description": "Collapse all groups, excluding the active tab group"
    },
    "command2": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Ctrl+E"
      },
      "description": "Open bookmarks manage page"
    }
  },
  "content_scripts": [],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}