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
- 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>
21 lines
474 B
JSON
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>"]
|
|
}
|
|
]
|
|
}
|