Blixem Tab Manager

Blixem Tab Manager

Organize, save & share your tabs for easy collaboration with Blixem.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Blixem Tab Manager",
  "homepage_url": "https://blixem.io/",
  "description": "Organize, save & share your tabs for easy collaboration with Blixem.",
  "version": "0.2.3",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "sessions",
    "topSites",
    "search",
    "bookmarks",
    "contextMenus",
    "commands",
    "tabGroups",
    "storage"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.blixem.io/*",
      "http://127.0.0.1:5500/*",
      "http://localhost:8080/*",
      "https://localhost:8080/*"
    ]
  },
  "action": {
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    },
    "default_title": "Blixem.io",
    "default_popup": "popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "override.html"
  },
  "commands": {
    "open-blixem": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Save current tab to workspace"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Period",
        "mac": "Command+Period"
      }
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}