a53b58a007
- Integrate rrweb library for session recording capabilities - Add RecordeReplayPage component with start/stop recording buttons - Implement useRecorder hook to manage recording state and events - Create bridge service for extension communication - Add storage service with Chrome extension and web compatibility - Implement downloadHtml utility for replay file generation - Update manifest permissions for activeTab, scripting, and tabs - Add Chrome extension type definitions as development dependencies
28 lines
495 B
JSON
28 lines
495 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Testing Tools",
|
|
"version": "1.0",
|
|
"description": "测试工具",
|
|
"permissions": [
|
|
"storage",
|
|
"clipboardWrite",
|
|
"activeTab",
|
|
"scripting",
|
|
"tabs"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"icons": {
|
|
"16": "favicon.ico",
|
|
"48": "favicon.ico",
|
|
"128": "favicon.ico"
|
|
},
|
|
"action": {
|
|
"default_popup": "index.html"
|
|
},
|
|
"options_ui": {
|
|
"page": "index.html",
|
|
"open_in_tab": true
|
|
}
|
|
} |