add plugin API recipe

This commit is contained in:
Yanzhen Yu
2021-07-05 22:52:52 +08:00
parent 65a45202d7
commit dbbb20f5e5
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)