Partizion

Partizion

Organize, find, and manage your work in the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "short_name": "Partizion",
  "name": "Partizion",
  "author": "Partizion",
  "version": "0.0.3.9",
  "description": "Organize, find, and manage your work in the browser.",
  "icons": {
    "16": "16-circle.png",
    "48": "48-circle.png",
    "128": "128-circle.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "128-circle.png",
    "default_title": "Save to Partizion",
    "default_popup": "index.html"
  },
  "commands": {
    "save-and-close-session": {
      "suggested_key": {
        "default": "Ctrl+Shift+Period",
        "mac": "Command+Shift+Period",
        "linux": "Ctrl+Shift+Period"
      },
      "description": "Save and Close Session"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      }
    },
    "open-partizion-search": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K",
        "linux": "Ctrl+Shift+K"
      },
      "description": "Open Partizion Search"
    },
    "open-partizion-dashboard": {
      "suggested_key": {
        "default": "Ctrl+Shift+O",
        "mac": "Command+Shift+O",
        "linux": "Ctrl+Shift+O"
      },
      "description": "Open Partizion Dashboard"
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "sessions",
    "commands",
    "cookies",
    "system.display"
  ],
  "optional_permissions": [
    "history"
  ],
  "host_permissions": [
    "http://*.partizion.io/*",
    "https://*.partizion.io/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.partizion.io/*"
    ]
  }
}