Embtion - Web Browser Automation

Embtion - Web Browser Automation

Automate web browser through connecting nodes, no coding required.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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"
    }
  }
}