Tab Master-Take Control of Tabs-Get Organized

Tab Master-Take Control of Tabs-Get Organized

Tab Master: Organize and manage your tabs, customize new tab page, save sessions and improve productivity

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_extName__",
  "version": "1.0",
  "description": "__MSG_extDesc__",
  "options_page": "options.html",
  "action": {
    "default_title": "__MSG_actionName__"
  },
  "background": {
    "service_worker": "worker_container.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.onetab.group/oauth/redirect*"
      ],
      "js": [
        "./content/oauth-github.global.js"
      ],
      "run_at": "document_start"
    }
  ],
  "commands": {
    "sendCurrentTab": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "mac": "Command+Shift+C"
      },
      "description": "__MSG_sendCurrentTab__"
    },
    "sendAllTabs": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "__MSG_sendAllTabs__"
    },
    "sendHighlightedTabs": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "__MSG_sendHighlightedTabs__"
    },
    "openAction": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      },
      "description": "__MSG_openOTG__",
      "global": true
    }
  },
  "icons": {
    "16": "./assets/icon-16.png",
    "32": "./assets/icon-32.png",
    "48": "./assets/icon-48.png",
    "128": "./assets/icon-128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "tabGroups",
    "contextMenus",
    "identity"
  ],
  "host_permissions": [
    "https://github.com/login/oauth/access_token",
    "https://api.github.com/user",
    "https://www.onetab.group/api"
  ],
  "optional_permissions": [
    "*://*/*"
  ],
  "content_security_policy": {}
}