A quick-reference tool for your sales team to access troubleshooting guides, connector info, and talking points without leaving their browser.
✅ Search - Type to find answers instantly
✅ Browse Categories - Connectors, Errors & Troubleshooting, ODI, Data Anomalies, Pricing
✅ Error Code Reference - Understand HTTP status codes (400, 401, 403, 404, 422, 429, 5xx) and root causes
✅ Diagnostic Framework - The "Big 3" troubleshooting checklist for any Fivetran issue
✅ One-Click Answers - Expand any item to see detailed explanations
✅ Non-Technical Design - Simple, clear language for your whole team
- Download or copy all extension files to a folder on your computer:
fivetran-sales-buddy/ ├── manifest.json ├── popup.html ├── popup.css ├── popup.js ├── data.js └── images/ (optional: place icon files here)
- Open Chrome and go to
chrome://extensions/ - Enable Developer Mode (toggle in top-right corner)
- Click Load unpacked
- Select the
fivetran-sales-buddyfolder - The extension should appear in your extensions list
- Click the puzzle icon 🧩 in Chrome toolbar
- Find "Fivetran Sales Buddy"
- Click the pin icon to pin it to your toolbar for quick access
- Click the extension icon in your Chrome toolbar
- Search: Type any question in the search bar (e.g., "MySQL to Databricks", "what is ODI")
- Browse: Click category tabs (Connectors, Troubleshooting, etc.) to explore
- Expand: Click any item to see the full answer
Content is stored in data.js. Each entry has:
id- Unique identifiercategory- One of: connectors, troubleshooting, odi, data-anomalies, pricingquestion- The main questionpreview- Short one-lineranswer- Full HTML answer with tips and scripts
{
id: 11,
category: "troubleshooting",
question: "What should I do if a sync times out?",
preview: "Handling sync timeout errors",
answer: `
<div class="answer-section">
<strong>Common Causes:</strong>
<ul>
<li>Source database is very large (10M+ rows)</li>
<li>Network latency or connection issues</li>
<li>Destination warehouse is slow to accept writes</li>
</ul>
</div>
// ... more HTML
`
}Add to the knowledgeBase array in data.js and reload the extension in Chrome.
After editing data.js or other files:
- Go to
chrome://extensions/ - Find "Fivetran Sales Buddy"
- Click the refresh icon 🔄
Your changes appear immediately.
-
10+ FAQs covering:
- MySQL & PostgreSQL connector setup
- Databricks integration troubleshooting
- ODI (On-Demand Ingestion) explainers
- Data anomaly diagnosis
- Pricing models and cost optimization
-
Talking Points for each answer - ready to use in customer calls
-
Code Examples for common API calls and database commands
- Bookmarks: Teach team members to pin the extension to their toolbar
- Search First: Searching is faster than browsing categories
- Copy-Paste Friendly: Code blocks and scripts can be copied directly to email/Slack
- Customize: Add your team's specific scenarios to the knowledge base
To add new content or update existing items:
- Edit
data.js - Add to the
knowledgeBasearray - Reload the extension in Chrome
Questions? Customize the content to match your team's most common call scenarios.
Version: 1.0
Last Updated: April 2026
Status: Ready for your team to use