Advanced Chrome extension for parsing and analyzing HTML with Python integration.
- Parse HTML elements from any webpage
- Extract element data (tags, IDs, classes, XPath, selectors)
- Export data as JSON
- Dark/Light theme support
- Python integration for advanced data analysis (coming soon)
- Open Chrome and go to
chrome://extensions/ - Enable "Developer mode"
- Click "Load unpacked"
- Select this directory
- Navigate to any webpage
- Click the extension icon
- Click "Parse Page" to extract elements
- Use "Export Data" to save as JSON
- Process data with Python scripts (see
/pythonfolder)
/
├── manifest.json # Extension configuration
├── popup.html # Extension popup UI
├── popup.js # Popup logic
├── content.js # Content script for page parsing
├── background.js # Background service worker
├── styles.css # Styles
└── python/ # Python analysis scripts (coming soon)
This is the basic skeleton. Next steps:
- Add tree view navigation
- Implement pattern detection
- Create Python analysis scripts
- Add data visualization
MIT