Guideflow

Guideflow

Guideflow

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Guideflow",
  "short_name": "Guideflow",
  "version": "1.0.24",
  "description": "Guideflow",
  "permissions": [
    "tabs",
    "background",
    "activeTab",
    "tabCapture",
    "storage",
    "scripting",
    "system.display"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "controller.html"
      ],
      "matches": [
        "chrome-extension://*/*"
      ]
    },
    {
      "resources": [
        "controllerTab.js"
      ],
      "matches": [
        "chrome-extension://*/*"
      ]
    },
    {
      "resources": [
        "/content/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "recording-panel/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "recording-panel/*/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "Angular Chrome Extension"
  },
  "externally_connectable": {
    "matches": [
      "https://app.guideflow.com/*",
      "https://stage.guideflow.com/*"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "recording-panel/runtime.js",
        "recording-panel/polyfills.js",
        "recording-panel/vendor.js",
        "recording-panel/main.js",
        "contentPage.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*://*.guideflow.com/*"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_end"
    },
    {
      "js": [
        "guideflowAppScript.js"
      ],
      "matches": [
        "*://*.guideflow.com/*"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "assets/icons/icon27.png",
    "48": "assets/icons/icon53.png",
    "128": "assets/icons/icon79.png"
  }
}