Session Manager

Session Manager

Session Manager improves efficiency by organizing tabs and bookmarks in the sidebar.

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.1.4",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage",
    "favicon",
    "sessions",
    "sidePanel",
    "commands",
    "tabs",
    "tabGroups",
    "bookmarks"
  ],
  "commands": {
    "openSidePanel": {
      "suggested_key": {
        "default": "Shift+Ctrl+S"
      },
      "description": "Open Side Panel"
    },
    "selectPrevTab": {
      "suggested_key": {
        "default": "Shift+Ctrl+Up"
      },
      "description": "Select Previous Tab"
    },
    "selectNextTab": {
      "suggested_key": {
        "default": "Shift+Ctrl+Down"
      },
      "description": "Select Next Tab"
    },
    "openSearchBox": {
      "suggested_key": {
        "default": "Shift+Ctrl+F"
      },
      "description": "Open Search Box"
    }
  },
  "side_panel": {
    "default_path": "src/pages/sidepanel/index.html"
  },
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "_locales/*/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}