add plugin API recipe

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent 35c6f20164
commit 8c17ef02ec
4 changed files with 215 additions and 5 deletions

View File

@@ -68,7 +68,13 @@ Canvas is a special HTML element, which will not be recorded by rrweb by default
### Console Recorder and Replayer
Starting with a later version of v0.9.11, we add the ability to record and play back console output.
Starting with a later version of v0.9.11, we add the ability to record and play back console output.
This feature aims to provide developers with more information about the bug scene. There are some options for recording and replaying console output.
[link](./console.md)
[link](./console.md)
### Plugin
The plugin API is designed to extend the function of rrweb without bump the size and complexity of rrweb's core part.
[link](./plugin.md)