Web Miner is a Chrome Extension currently under active development, designed to simplify the creation of automated web interaction scripts. Leveraging a library of basic commands, users can easily craft scripts for a wide range of purposes—from scraping web page data to automating repetitive tasks such as form submissions. Our vision extends to enabling script creation and visualization through the extension, with capabilities to save and execute scripts offline.
https://www.youtube.com/watch?v=-TMjoVj6af4
- Install Dependencies: Execute
npm install
to download and install the necessary dependencies. - Production Build: Run
npm run build
to compile all essential files into thedist/
directory, ready for deployment in production environments. - Watch Mode: Activate watch mode with
npm run watch
to automatically recompile files insrc/
upon any changes, facilitating rapid development iterations. - Content Script Development: For focused development on the content script, utilize
npm run watch:content
to exclusively recompile changes within thesrc/content/
directory, ideal for modifications within the modal. - Extension Loading: To load the extension, navigate to Chrome Extensions and select the
dist/
folder as an unpacked extension. For detailed instructions, refer to the Chrome Extension Getting Started Tutorial.