Replit
Step-by-step guide to add ProofyBubble to your Replit web application
Replit supports various frameworks and includes an AI assistant to help modify your code. You can use Replit Agent to integrate ProofyBubble analytics into your web application.
Access your ProofyBubble website settings and copy your Website ID (e.g., "66d5561aa2f1fb254ce42d0b") and App ID (e.g., <your-app-id>
).
Your tracking script contains this information:
<script id="credibility-client-<your-id>" type="module" crossorigin="anonymous" data-app-id="<your-app-id>" src="https://client.proofybubble.com/assets/embed.js" ></script>
Open Replit Agent (AI assistant) and use this customized prompt:
Help me integrate ProofyBubble analytics into my web project. I need this tracking script added to work across my entire application:
<script id="credibility-client-<your-id>" type="module" crossorigin="anonymous" data-app-id="<your-app-id>" src="https://client.proofybubble.com/assets/embed.js" ></script>
Implementation based on my project type:
- HTML/CSS/JS projects: Add to the <head> section of index.html and all pages
- React projects: Use proper Script component in the main layout
- Next.js projects: Add Script component to _app.js or layout
- Express/Node.js: Include in your template engine or static HTML files
- Python Flask/Django: Add to base template head section
Requirements:
- Script must load on every page/route
- Preserve the type="module" attribute
- Use the exact source URL: https://client.proofybubble.com/assets/embed.js
Please implement this and show me exactly what changes you made to which files.
After Replit Agent makes the changes:
- Run your project - Use Replit's run button to start your application
- Open the preview - View your app in Replit's webview or open the public URL
- Check analytics - Monitor your ProofyBubble dashboard for visitor data
If tracking isn't working:
The ProofyBubble analytics doesn't seem to be working. Can you help debug this?
Please verify:
- What type of project am I running? (React, HTML, Next.js, etc.)
- Which files did you modify to add the analytics?
- Is the script loading in the browser's developer tools?
- Will it track visitors on all pages of my site?
The analytics should connect to: https://client.proofybubble.com/assets/embed.js With my Website ID: ⚠️>>> REPLACE WITH YOUR WEBSITE ID <<<⚠️ and App ID: ⚠️>>> REPLACE WITH YOUR APP ID <<<⚠️
Please fix any implementation issues you find.
Common issues:
- Script only added to one page instead of globally
- Wrong file modified for the project framework
- Analytics not working in Replit's development preview
- Project not publicly accessible for testing
If you're having trouble with your Replit setup, contact us at me@kulkarniankita.com.