Detectify Recorder

Detectify Recorder

Detectify Recorder allows you to record interactions with a website which Application Scanning can use during security testing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Detectify Recorder",
  "description": "Detectify Recorder allows you to record interactions with a website which Application Scanning can use during security testing.",
  "version": "4.4.1",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAihcioTIgQLKHgBM4TWh192CAm+hJIEUMua6+mD/qOdPbuyVsnfuBz4QQht/LwKKwKOm7TSBh262F3L7zBsfUDwtfRz4r+4CDTFVRvK4ifTwH0CcFFL8EA96ujUyNOsqMK/L5MLZ5AhcuQV+IDvAJGLLHSELdotSR6ANam963zdAGA8GA0C2yO3+ElYKhzepCy41nHJZpei/XnxknMdsS+cURDPz3ZnVwweeC083zkX1geFrqAOsoRENcLbuIvklUk9n0dIFf34XtFNUN4sMYrk3FReMSuzanJfIiFz83Dt60KTtaJcXBsTov+105XfzJeJbuloloLLB2oHOr+BeqgwIDAQAB",
  "permissions": [
    "tabs",
    "webNavigation",
    "background",
    "storage",
    "alarms"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/icon16.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "incognito": "split",
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}