QuickEditor

QuickEditor

Get to your Form & Funnel Editor Quickly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "QuickEditor",
  "version": "3.1",
  "description": "Get to your Form & Funnel Editor Quickly",
  "content_scripts": [
    {
      "matches": [
        "*://*/location/*/page-builder/*"
      ],
      "js": [
        "js/Storage.js",
        "js/editing_exp.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/add_call_button.js",
        "js/listener.js",
        "js/inject.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://client-app-automation-workflows.leadconnectorhq.com/*",
        "https://chatgpt.com/*",
        "https://chat.openai.com/*"
      ],
      "js": [
        "js/workflow_ai.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "alarms",
    "browsingData",
    "tabs",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*",
    "https://client-app-automation-workflows.leadconnectorhq.com/*",
    "https://chatgpt.com/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": "icons/48.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "options_ui": {
    "page": "settings.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/page_data_parser.js",
        "js/contact_search.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}