Freezetab

Freezetab

Freezetab is a tool for saving content from the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Freezetab is a tool for saving content from the web.",
  "manifest_version": 3,
  "name": "Freezetab",
  "version": "2.0.4",
  "background": {
    "service_worker": "bg3.js"
  },
  "action": {
    "default_popup": "index.html"
  },
  "content_security_policy": {
    "extension_pages": "default-src 'self'; img-src * data:; style-src 'unsafe-inline'; connect-src *"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "optional_permissions": [
    "tabs",
    "tabGroups"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "scripting",
    "contextMenus",
    "alarms"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+O"
      },
      "description": "Open Freezetab."
    }
  }
}