This is a Chrome Extension that intelligently auto-fills web forms using Gemini AI. It collects input field IDs and their associated labels (questions), sends them to Gemini for context-aware answers, and automatically fills in the inputs with the returned responses.
- The extension collects all
<input>
field IDs and their corresponding<label>
text (question). - It sends this data to Gemini AI to generate context-appropriate answers.
- The extension receives the AI-generated answers and maps them back to the respective input fields using their IDs.
- It uses
chrome.scripting.executeScript
to fill each field automatically.
-
Clone or download this repository:
git clone https://github.com/Talish1234/auto-form-filler.git
- JavaScript
- Chrome Extension API (Manifest V3)
- Gemini API (Google Generative AI)
- DOM manipulation
- Detects and parses form input fields
- Uses Gemini AI for smart field completion
- Lightweight and fast Chrome Extension
- Works on most webpages with standard forms