Embtion - Web Browser Automation

Automate web browser through connecting nodes, no coding required.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Embtion - Web Browser Automation",
  "version": "0.9.0",
  "description": "Automate web browser through connecting nodes, no coding required.",
  "icons": {
    "16": "assets/icons/16.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "webNavigation",
    "notifications",
    "scripting",
    "storage",
    "unlimitedStorage",
    "offscreen",
    "cookies",
    "debugger",
    "clipboardRead",
    "clipboardWrite",
    "downloads",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "page-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "pages/popup/index.html",
    "default_title": "Embtion - Web Browser Automation",
    "default_icon": {
      "16": "assets/icons/16.png",
      "48": "assets/icons/48.png",
      "128": "assets/icons/128.png"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}