Supatabs - OneTab on Steroids

Supatabs - OneTab on Steroids

Supatabs - OneTab but 10x better! Declutter your browser tabs in seconds and speed up your computer.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "options_ui": {
    "page": "src/pages/options/index.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": {
      "34": "icon-34.png"
    }
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "tabGroups"
  ],
  "commands": {
    "merge-selected": {
      "description": "Send selected tabs to Supatabs."
    },
    "merge-all": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "Send all open tabs to Supatabs."
    },
    "merge-left": {
      "suggested_key": {
        "default": "Alt+L",
        "mac": "Alt+L"
      },
      "description": "Send all open tabs to the left to Supatabs."
    },
    "merge-right": {
      "suggested_key": {
        "default": "Alt+R",
        "mac": "Alt+R"
      },
      "description": "Send all open tabs to the right to Supatabs."
    },
    "open-app-tab": {
      "suggested_key": {
        "default": "Alt+O",
        "mac": "Alt+O"
      },
      "description": "Open or focus Supatabs."
    }
  },
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "icon-128.png",
        "icon-34.png"
      ],
      "use_dynamic_url": false
    }
  ],
  "version": "0.14.0"
}