CloudQA | The Functional Testing Cloud

CloudQA | The Functional Testing Cloud

Automate your browser tests in 10 minutes, run them in cloud with CloudQA

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CloudQA | The Functional Testing Cloud",
  "description": "Automate your browser tests in 10 minutes, run them in cloud with CloudQA",
  "version": "3.5.6",
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "contextMenus",
    "clipboardWrite",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery.min.js",
        "lib/cssesc.min.js",
        "js/logABug/extract_content.js",
        "js/logABug/content.js",
        "js/contentScripts/aqap.injected.js",
        "js/contentScripts/targetSelector.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": "./assets/images/cloudqa16.png",
    "default_title": "CloudQA"
  },
  "options_page": "index.html#/options",
  "content_security_policy": {
    "script-src": "self, https://ssl.google-analytics.com; object-src 'self'"
  },
  "icons": {
    "16": "./assets/images/cloudqa16.png",
    "48": "./assets/images/cloudqa48.png",
    "128": "./assets/images/cloudqa128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+C",
        "windows": "Alt+Shift+C",
        "mac": "Alt+Shift+C",
        "chromeos": "Alt+Shift+C",
        "linux": "Alt+Shift+C"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "info/info.html",
        "js/contentScripts/javascript.alert.js",
        "js/logABug/event.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "/logabug_angularjs/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.cloudqa.io/*"
    ]
  }
}