Embed the widget

One script tag on any page that serves HTML: no login for your visitors, no extra build steps.

1. Add the snippet

Add the snippet before </body>. You can find your project ID in the project settings under Embed Code, where the ready-to-copy snippet lives, with variants for Next.js, WordPress, and Webflow.

<script
  src="https://feed-bapp.de/widget.js"
  data-project-id="<Projekt-UUID>"
  async
></script>

Then add your domain to the project settings under Allowed Origins; otherwise the widget rejects submissions with 403 origin_not_allowed.

Turn off diagnostics

By default, the widget captures the most recent console messages, JavaScript errors, and failed network requests as technical context. One attribute on the script tag turns this off completely:

<script
  src="https://feed-bapp.de/widget.js"
  data-project-id="<Projekt-UUID>"
  data-diagnostics="off"
  async
></script>

Off means console, error, and network data are never captured in the first place. Screenshot, element marker, and text still work. The buffers are never installed with data-diagnostics="off", so nothing is collected and filtered later; it is simply never captured.