Tab Session Manager

Tab Session Manager

Save and restore the state of windows and tabs. It also supports automatic saving.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "6.12.1",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "downloads",
    "identity"
  ],
  "optional_permissions": [
    "https://www.googleapis.com/*"
  ],
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "icons/icon_min.png",
    "64": "icons/icon.png"
  },
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon_min.png",
      "64": "icons/icon.png"
    },
    "default_popup": "popup/index.html"
  },
  "commands": {
    "_execute_browser_action": {
      "description": "__MSG_openPopupDescription__",
      "suggested_key": {
        "default": "Ctrl+Shift+L"
      }
    },
    "saveAllWindow": {
      "description": "__MSG_saveAllWindowDescription__"
    },
    "saveCurrentWindow": {
      "description": "__MSG_saveCurrentWindowDescription__"
    },
    "exportSessions": {
      "description": "__MSG_exportSessionsDescription__"
    }
  },
  "incognito": "spanning",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}