TabMan

TabMan

Web Extenstion for Managing Tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "TabMan",
  "version": "0.1.0",
  "description": "Web Extenstion for Managing Tabs",
  "manifest_version": 3,
  "action": {
    "browser_style": true,
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Comma"
      }
    },
    "open-popup": {
      "suggested_key": {
        "default": "Alt+Shift+R"
      },
      "description": "Open popup"
    }
  },
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}