Overview
The Knowledge Tooltip extension can be toggled on or off from the popup menu. When disabled, the extension will not inject its content script or show tooltips on any page.Accessing Settings
Click the Knowledge Tooltip icon in your Chrome toolbar to open the popup menu.
Extension Status Toggle
The first section of the popup contains a toggle switch that controls whether the extension is active.How It Works
The extension status is stored using Chrome’s storage API and synced across your devices:The setting is stored in
chrome.storage.sync, which means your preference will sync across all Chrome browsers where you’re signed in.Default State
By default, the extension is enabled when first installed. The code uses this logic:- If no value is stored yet →
enabled=true - If explicitly set to
false→enabled=false - If set to
true→enabled=true
Real-Time Updates
When you toggle the extension, all open tabs are immediately notified:- Enabled: The content script starts listening for text selections
- Disabled: The content script stops showing the Knowledge button and removes any active tooltips
Status Indicators
The popup displays a visual status indicator:- Active: Green checkmark with ”✓ Active” text
- Inactive: Red cross with ”✗ Inactive” text
Troubleshooting
Extension doesn't activate after enabling
Extension doesn't activate after enabling
Try refreshing the page. The content script needs to be re-injected for changes to take effect on already-loaded pages.
Status keeps reverting to disabled
Status keeps reverting to disabled
Check if you have any browser policies that might be overriding extension settings. Contact your IT administrator if you’re on a managed device.
Toggle switch is grayed out
Toggle switch is grayed out
This usually indicates a permissions issue. Try reinstalling the extension and granting the required permissions.