A Chrome extension that provides instant word definitions when you double-click any word on a webpage.
npm install
Build the extension for production:
npm run build
This will create a build/ directory with all the extension files ready to load into Chrome.
npm run buildchrome://extensions/build/ directory├── src/
│ ├── background/ # Background service worker
│ ├── content/ # Content script (runs on web pages)
│ └── assets/ # Images and static assets
├── public/ # Static files copied to build
│ ├── index.html # Extension popup HTML
│ ├── popup.js # Popup functionality
│ ├── popup.css # Popup styles
│ └── manifest.json # Extension manifest
├── build.js # Build script using esbuild
└── package.json
Contributions are welcome! Please feel free to submit a Pull Request.
See LICENSE file for details.