Storylane

Storylane

Capture your product application pages easily, and build interactive product demo in Storylane.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Storylane",
  "version": "2.0.1",
  "description": "Capture your product application pages easily, and build interactive product demo in Storylane.",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "cookies",
    "scripting",
    "tabCapture",
    "offscreen"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/16x16.png",
      "32": "images/32x32.png",
      "48": "images/48x48.png",
      "128": "images/128x128.png"
    }
  },
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "sendMessagesForEvents.bundle.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "gmailCaptureScript.bundle.js"
      ]
    },
    {
      "matches": [
        "https://*.storylane.io/*",
        "https://*.storylane.us/*",
        "http://localhost/*"
      ],
      "run_at": "document_idle",
      "js": [
        "markExtensionAsInstalled.bundle.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "sendMessageToSharePage.bundle.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "lib/chrome-browser-polyfill.js",
        "lib/web-capture-frames.js",
        "lib/web-capture-extension-frames.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "lib/web-capture-hooks-frames.js"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "world": "MAIN"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "lib/chrome-browser-polyfill.js",
        "lib/web-capture-bootstrap.js",
        "lib/web-capture-extension-bootstrap.js"
      ]
    }
  ]
}