rrweb

rrweb

The web extension of rrweb which helps to run rrweb on any website out of box

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.0",
  "author": "rrweb-io",
  "version_name": "2.0.0-alpha.5",
  "name": "rrweb",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/index.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "action": {
    "default_title": "rrweb extension",
    "default_popup": "popup/popup.html",
    "browser_style": false
  },
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "**/*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}