Files
rrweb/rrweb-simple-ext/manifest.json
zhaoyilun 27a17d7068
Some checks failed
Tests / Tests (push) Has been cancelled
ESLint Check / ESLint Check and Report Upload (push) Has been cancelled
Prettier Check / Format Check (push) Has been cancelled
Prettier Check / Format Code (push) Has been cancelled
ESLint Check / Build Base for Bundle Size Comparison (push) Has been cancelled
Add SuperRPA integration guide, simple extension and standalone replay page
- docs/integration/superrpa-integration.zh_CN.md: complete integration guide
- rrweb-simple-ext/: minimal Chrome extension for page recording
- replay.html: standalone drag-and-drop replay viewer
- CLAUDE.md: project instructions

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-10 17:08:24 +08:00

21 lines
474 B
JSON

{
"manifest_version": 3,
"name": "rrweb Simple Recorder",
"version": "1.0.0",
"description": "Simple rrweb page recorder",
"permissions": ["activeTab", "storage", "scripting"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "rrweb Recorder",
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": ["record.umd.cjs", "inject.js"],
"matches": ["<all_urls>"]
}
]
}