Supademo: AI interactive demos in seconds

Supademo: AI interactive demos in seconds

Communicate products more effectively using beautiful, AI-powered interactive demos and guides.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Supademo: AI interactive demos in seconds",
  "description": "Communicate products more effectively using beautiful, AI-powered interactive demos and guides.",
  "version": "4.1.5",
  "short_name": "Supademo",
  "icons": {
    "16": "icons/supademo_icon_16.png",
    "48": "icons/supademo_icon_48.png",
    "128": "icons/supademo_icon_128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "toggle-demo-mode": {
      "suggested_key": {
        "default": "Ctrl+Shift+8",
        "mac": "Command+Shift+8"
      },
      "description": "Start/Stop recording a Supademo"
    },
    "toggle-shot-mode": {
      "suggested_key": {
        "default": "Ctrl+Shift+9",
        "mac": "Command+Shift+9"
      },
      "description": "Start/Stop taking a screenshot"
    }
  },
  "permissions": [
    "tabs",
    "activeTab",
    "tabCapture",
    "offscreen",
    "storage",
    "webNavigation",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start",
      "js": [
        "content-scripts/spy.js"
      ],
      "match_origin_as_fallback": true,
      "world": "ISOLATED"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/shadow-ui.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start",
      "js": [
        "content-scripts/spy.js"
      ],
      "match_origin_as_fallback": true,
      "world": "ISOLATED"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://supademo.com/*",
      "https://extension.supademo.com/*",
      "https://app.supademo.com/*",
      "https://test.supademo.com/*",
      "https://test2.supademo.com/*",
      "http://localhost:3000/*"
    ]
  },
  "background": {
    "type": "module",
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Supademo",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content-scripts/shadow-ui.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}