SaveTabs - Window & Tab Manager

SaveTabs - Window & Tab Manager

Save and open all web pages with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_short_name__",
  "manifest_version": 2,
  "minimum_chrome_version": "89",
  "version": "4.2.0",
  "author": "胡镇华",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "icons": {
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon-128.png",
    "default_popup": "savetabs.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "options.html",
  "offline_enabled": true,
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "mac": "Command+Shift+Space",
        "default": "Alt+S"
      }
    },
    "open_workspace_all": {
      "description": "__MSG_open_workspace_all__"
    },
    "open_workspace_window": {
      "description": "__MSG_open_workspace_window__"
    },
    "open_workspace_note": {
      "description": "__MSG_open_workspace_note__"
    },
    "open_workspace_temporary": {
      "description": "__MSG_open_workspace_temporary__"
    },
    "open_workspace_tab": {
      "description": "__MSG_open_workspace_tab__"
    },
    "open_workspace_bookmark": {
      "description": "__MSG_open_workspace_bookmark__"
    },
    "open_workspace_history": {
      "description": "__MSG_open_workspace_history__"
    },
    "add_window": {
      "description": "__MSG_add_window__"
    },
    "add_note": {
      "description": "__MSG_add_note__"
    },
    "add_temporary": {
      "description": "__MSG_add_temporary__"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "unlimitedStorage",
    "chrome://favicon/",
    "downloads",
    "history",
    "bookmarks"
  ],
  "content_security_policy": "script-src 'self' 'sha256-4RS22DYeB7U14dra4KcQYxmwt5HkOInieXK1NUMBmQI='; object-src 'self'",
  "web_accessible_resources": [
    "savetabs.html",
    "options.html"
  ]
}