A Chrome Extension that adds calculated performance metrics (APPT % and LXFER %) directly into Convoso reports for instant sales conversion insights.
- 6 Lensed Columns - APPT%(C), APPT%(D), LXFER%(C), LXFER%(D), SUCCESS%(C), SUCCESS%(D)
- Color-Coded by Metric Type - Blue (APPT), Pink (LXFER), Green (SUCCESS)
- Column Visibility Toggle - Show/hide any column via ⚙️ Columns button
- Persistent Settings - Preferences saved between sessions via
chrome.storage - Dashboard Overlay - Full analytics view with agent-by-list breakdown
- CSV Export - One-click export with all 6 metrics
- Zero Data Collection - All processing happens locally in your browser
This extension uses minimal permissions:
| Permission | Purpose |
|---|---|
activeTab |
Communicate between popup and content script |
storage |
Persist column visibility preferences |
convoso.com |
Inject enhancement script on Convoso pages only |
No data is collected, stored, or transmitted.
- Visit the Chrome Web Store listing (link after publishing)
- Click Add to Chrome
- Download or clone this repository
- Open Chrome and navigate to
chrome://extensions/ - Enable Developer mode (toggle in top right)
- Click Load unpacked
- Select the
convoso-insight-lensfolder
- Navigate to a Convoso report page (e.g., "FB Performance By Agent By List")
- The extension automatically adds APPT % and LXFER % columns to tables
- Click the extension icon → Open Dashboard Overlay for detailed analysis
- Use the Export CSV button to download data
| Metric | Formula |
|---|---|
| APPT % | (Appointments ÷ Contacts) × 100 |
| LXFER % | (Live Transfers ÷ Contacts) × 100 |
| Contact % | (Contacts ÷ Dialed) × 100 |
convoso-insight-lens/
├── manifest.json # Extension manifest (Manifest V3)
├── content.js # Core logic - injected into Convoso pages
├── popup.html # Extension popup UI
├── popup.js # Popup script
├── popup.css # Popup styles
├── icons/ # Extension icons (16, 48, 128px)
├── PRIVACY_POLICY.md # Privacy policy
├── PUBLISHING_GUIDE.md # Chrome Web Store publishing guide
└── STORE_LISTING.md # Store listing content template
This extension:
- ✅ Processes data locally in your browser
- ✅ Works only on convoso.com domains
- ❌ Does NOT collect any data
- ❌ Does NOT send data to external servers
- ❌ Does NOT store data between sessions
See PRIVACY_POLICY.md for full details.
See PUBLISHING_GUIDE.md for Chrome Web Store submission instructions.
| Version | Changes |
|---|---|
| 2.1.0 | 6 Lensed columns (SUCCESS added), metric-type coloring, column visibility toggle, persistent settings |
| 2.0.0 | Minimal permissions, inline column injection, dashboard overlay |
| 1.0.0 | Initial release |
MIT