GoLess: Browser Automation and Web Scraping

GoLess: Browser Automation and Web Scraping

GoLess no-code browser automation and Robotic Process Automation (RPA) tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GoLess: Browser Automation and Web Scraping",
  "description": "GoLess no-code browser automation and Robotic Process Automation (RPA) tool",
  "version": "1.2.28",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_icon": "logoGA.png"
  },
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "icons": {
    "128": "logoGA.png"
  },
  "commands": {
    "open-dashboard": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "Open the GoLess dashboard"
    },
    "element-picker": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      },
      "description": "Open element picker"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "run_at": "document_start",
      "match_about_blank": true,
      "all_frames": true
    },
    {
      "matches": [
        "http://localhost/*",
        "*://*.goless.com/*",
        "*://goless.com/*"
      ],
      "js": [
        "webService.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "elements.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "captcha.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "optional_permissions": [
    "clipboardRead",
    "downloads",
    "contextMenus",
    "notifications"
  ],
  "permissions": [
    "tabs",
    "cookies",
    "proxy",
    "alarms",
    "storage",
    "debugger",
    "scripting",
    "webNavigation",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/elementSelector.css",
        "/Inter-roman-latin.var.woff2",
        "/icon-128.png",
        "/locales/*",
        "elementSelector.bundle.js",
        "captcha.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3004/*",
      "*://localhost/*",
      "*://goless.com/*"
    ]
  },
  "sandbox": {
    "pages": [
      "/sandbox.html"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
  }
}