1.9 KiB
1.9 KiB
🔵 Chrome Extension Installation Guide
Quick Installation (Developer Mode)
- Open Chrome
- Navigate to:
chrome://extensions/ - Enable: "Developer mode" (toggle in top-right)
- Click: "Load unpacked"
- Select: This
chrome-extensiondirectory - Done! Extension will appear in your toolbar
🚀 Usage
- Click the extension icon in the toolbar
- Or press
Alt+Shift+S(Option+Shift+S on Mac) - Hover over any element on a webpage
- Look for red dotted borders showing scrollable content
- Click to capture the full element screenshot
📦 Chrome Web Store (Future)
To publish to Chrome Web Store:
- ZIP this entire directory
- Upload to Chrome Developer Dashboard
- Fill out store listing details
- Submit for review
⚠️ Troubleshooting
- Extension not loading: Make sure to select the entire
chrome-extensiondirectory - No screenshots: Check that html2canvas.min.js is present
- Permissions error: Make sure "Developer mode" is enabled
- Keyboard shortcut conflicts: Check Chrome settings > Extensions > Keyboard shortcuts
📁 What's Included
chrome-extension/
├── manifest.json # Extension manifest (v3)
├── content.js # Main functionality
├── background.js # Service worker
├── popup.html # Extension popup UI
├── popup.js # Popup logic
├── html2canvas.min.js # Screenshot library
├── icons/ # Extension icons
└── README.md # Full documentation
🔄 Updates
To update the extension:
- Modify files in this directory
- Go to
chrome://extensions/ - Click the refresh icon on your extension
- Test the changes
For complete documentation, see README.md in this directory.