TabHub: Next-generation Tab Manager

TabHub: Next-generation Tab Manager

A next-generation tab manager. Manage tabs on cloud, track browsing time efficiently and reduce browser memory usage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.4",
  "name": "TabHub: Next-generation Tab Manager",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuusdYYLtdnHxfuhnfCQZHBInWRZpKougCXWaQlTXVWEP9lO2NeqcvZ7ryM6L0Ta9S1JkNkUSjVPsRGVtC0dngX16ZsGPl3ETWGr7FykFmE0LfwhvdCvuc1s2DIDaves20OKO17yd2PTR8k2b4NauWDnCQUAwufqjxTdI6d8xP1x+u7v3xzCsX7JdsYRoDQtoWUgPeWaA3g7Og8KM8bf/27OHaGrCWCrB7VwFJINk/VjsVKSOp7v+fu5wiAW5Rq6kPmaL9Pr5Y1jDIp3L1PfFiT30c/xs5amB4x9lkjaps5/4S2VU26ke0hpE/FwcMiVoBYW5OQjN8Xth/FxBJ4+LBwIDAQAB",
  "description": "A next-generation tab manager. Manage tabs on cloud, track browsing time efficiently and reduce browser memory usage.",
  "action": {
    "default_icon": "mock-logo.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "tabGroups"
  ],
  "optional_permissions": [
    "bookmarks",
    "history"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "id": [
      "lmofhhaibahhojhinmpgmifdmennlcjn"
    ],
    "matches": [
      "https://app.tabhub.io/*"
    ],
    "accepts_tls_channel_id": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.tabhub.io/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "mock-logo.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "mock-logo.png"
      ],
      "matches": []
    }
  ],
  "commands": {
    "_open_extension": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      },
      "global": true,
      "description": "Shortcut to open extension"
    }
  }
}