| 开发者 | stackborg |
|---|---|
| 更新时间 | 2026年8月14日 19:08 |
| PHP版本: | 8.2 及以上 |
| WordPress版本: | 7.0 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
sb-replayborg folder to /wp-content/plugins/.No. There is no external service, no API key and no account. Recordings are written to your WordPress database and read back from it.
The recorder is loaded once, asynchronously, and sends batches rather than a request per event. Idle stretches produce no data at all.
Events are GZIP compressed, which removes roughly 90% of their size. A five-page visit is usually a few hundred kilobytes. Set a retention window so old recordings clear themselves out.
Yes. The recorder is a static script with no per-page markup, so a cached page records exactly like an uncached one.
Add this to your theme's functions.php or a small plugin:
add_filter( 'sb_replayborg_should_record', function ( $record ) { return current_user_can( 'manage_options' ) ? false : $record; } );
Nothing is excluded by default, so that the first thing you do — opening your own site to check recording works — actually shows you a recording.
Everything the plugin created is removed: the recordings, the events, and its settings. Deactivating changes nothing.
Yours. Times are stored in UTC and displayed using the timezone, date format and time format from Settings → General.
The full guide — setup, reading a session, privacy, hooks and troubleshooting — is at https://replayborg-wp-plugin.stackborg.com/. The plugin's own Help & Support screen links to it, and every screen links there from its header.
Email support@stackborg.com. The Help & Support screen in the plugin has a card that copies your setup details, which usually saves a round trip. Security reports go to security@stackborg.com — privately, please, rather than in public.
Yes. The two files in assets/js/ are compiled, and their complete TypeScript sources ship inside the plugin, in src-js/, with the build configuration. cd src-js && npm install && npm run build:all rebuilds exactly what is shipped. No obfuscation of any kind is applied.