BugBug Automation Testing

BugBug Automation Testing

Automate your website testing without code. An easy alternative to Selenium, Cypress and Katalon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BugBug Automation Testing ",
  "description": "Automate your website testing without code. An easy alternative to Selenium, Cypress and Katalon.",
  "version": "7.20.0",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "incognito": "spanning",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "webappContent.js"
      ],
      "matches": [
        "https://app.bugbug.io/*"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "BugBug Automation Testing  (7.20.0)"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "injection.js",
        "injection.js.map",
        "content.js.map",
        "background.js.map",
        "webappContent.js.map",
        "static/media/*",
        "sandbox.html",
        "sandbox.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "tabs",
    "webNavigation",
    "webRequest",
    "declarativeNetRequest",
    "debugger",
    "storage",
    "scripting",
    "downloads",
    "system.display",
    "offscreen"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  }
}