Dakka

Dakka

Record user actions to create e2e test cases

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dakka",
  "description": "Record user actions to create e2e test cases",
  "version": "0.1.10",
  "manifest_version": 3,
  "devtools_page": "./devTools/devTools.html",
  "background": {
    "service_worker": "./background/background.bundle.js"
  },
  "action": {
    "default_popup": "./devTools/popup.html"
  },
  "permissions": [
    "tabs",
    "clipboardWrite",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "./contentScript/contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  }
}