Linux 软件免费装
Banner图

SB Replayborg

开发者 stackborg
更新时间 2026年8月14日 19:08
PHP版本: 8.2 及以上
WordPress版本: 7.0
版权: GPLv2 or later
版权网址: 版权信息

标签

privacy analytics user experience session replay screen recording

下载

1.0.0 1.0.1 1.1.0

详情介绍:

SB Replayborg records what visitors do on your site and lets you play it back — the pages they moved through, where they clicked, how long they stayed. Everything is captured by your own site and stored in your own database. No third-party service is involved at any point, and nothing is sent anywhere. Listed here as SB ReplayborgSB for Stackborg, who publish it. In your admin menu and on its screens it is simply Replayborg. What this version does Documentation and support The plugin has its own Help & Support screen: the documentation, the privacy policy, the support address, and the setup details a support email needs, in one place. Every screen links to it from the header. The full documentation is at https://replayborg-wp-plugin.stackborg.com/ — installation, reading a session, the privacy controls, the hooks, troubleshooting, and the privacy policy. Built as modules The plugin is organised so that features arrive as modules that can be switched on without disturbing what is already installed. This first release ships one — sessions. Anything added later slots in beside it, and turning a module off never destroys the data it collected. Privacy Session recordings are still personal data in most jurisdictions. Tell your visitors you collect them, in your privacy policy — the plugin adds a suggested passage to WordPress's own privacy policy guide to help. The full policy, including wording you can adapt, is at https://replayborg-wp-plugin.stackborg.com/privacy

安装:

  1. Install SB Replayborg through Plugins → Add New, or upload the sb-replayborg folder to /wp-content/plugins/.
  2. Activate it through the Plugins menu.
  3. Open Replayborg in the admin menu. Recordings appear as visitors browse the site.
Nothing needs configuring to start. Administrators are recorded like anyone else; to exclude a role, see the FAQ.

屏幕截图:

  • A session played back, with the transport bar, the page markers on the scrubber, and the visitor and the visit at a glance beside it.
  • Pages visited — time on page, clicks, clicks per minute and each page's share of the visit, with entry and exit marked. Clicking a row jumps the player there.
  • Help & Support — the documentation, the privacy policy and where to write, with the setup details a support email needs.

升级注意事项:

1.1.0 Sessions now show as finished when the visitor actually leaves. Adds one column to the recordings table; the upgrade is automatic. 1.0.1 Housekeeping only. Nothing you can see changes. 1.0.0 First release.

常见问题:

Does this send my visitors' data anywhere?

No. There is no external service, no API key and no account. Recordings are written to your WordPress database and read back from it.

Does it slow the site down?

The recorder is loaded once, asynchronously, and sends batches rather than a request per event. Idle stretches produce no data at all.

How much database space does a recording use?

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.

Does it work with caching plugins?

Yes. The recorder is a static script with no per-page markup, so a cached page records exactly like an uncached one.

How do I stop recording administrators, or any other role?

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.

What happens to my data if I uninstall?

Everything the plugin created is removed: the recordings, the events, and its settings. Deactivating changes nothing.

Which timezone are the times shown in?

Yours. Times are stored in UTC and displayed using the timezone, date format and time format from Settings → General.

Where can I read the documentation?

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.

How do I get support?

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.

Is the JavaScript source included?

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.

更新日志:

1.1.0 1.0.1 1.0.0