Tab Session Manager

Tab Session Manager

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "6.12.2",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "Tab-Session-Manager@sienori"
    }
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "cookies",
    "downloads",
    "identity"
  ],
  "optional_permissions": [
    "https://www.googleapis.com/*"
  ],
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "icons/icon_min.svg",
    "64": "icons/icon.svg"
  },
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon_min.svg",
      "64": "icons/icon.svg"
    },
    "default_popup": "popup/index.html"
  },
  "commands": {
    "_execute_browser_action": {
      "description": "__MSG_openPopupDescription__"
    },
    "saveAllWindow": {
      "description": "__MSG_saveAllWindowDescription__"
    },
    "saveCurrentWindow": {
      "description": "__MSG_saveCurrentWindowDescription__"
    },
    "exportSessions": {
      "description": "__MSG_exportSessionsDescription__"
    }
  }
}