Quick Apply Autofill is a high-speed Chrome extension designed to eliminate the repetitive task of filling out forms. Developed by an engineering student at IIT Bhilai, it allows users to fill complex forms (Google Forms, Application portals, etc.) in under one second.
- Zero-Latency Filling: Populates all placeholders instantly.
- Smart Mapping: Identifies common fields like Name, Email, and College automatically.
- Privacy Focused: Your data stays in your browser's local storage.
- On this repository page, click the green Code button.
- Select Download ZIP.
- Extract the downloaded ZIP to a folder on your computer.
- Open Chrome and go to
chrome://extensions/. - Enable Developer mode using the toggle in the top-right corner.
- Click Load unpacked.
- Select the extracted folder containing
manifest.json. - The extension icon will appear in your Chrome toolbar — you're good to go! 🎉
Quick-Apply-Autofill/
├── manifest.json # Extension configuration
├── popup.html # Extension popup UI
├── popup.js # Popup logic
├── content.js # Form autofill script
├── icons/ # Extension icons
│ ├── icon16.png
│ ├── icon48.png
│ └── icon128.png
Click here to download the latest version directly: Download ZIP from main branch
- This extension is not published on the Chrome Web Store. Install via Developer Mode as described above.
- All your autofill data is stored locally in your browser — nothing is sent to any server.
Created by Swagat Baghel | GitHub Profile | IIT Bhilai
This extension makes zero network requests. Your personal data never leaves your browser.
- All profile data is stored exclusively in
chrome.storage.local - No
fetch(),XMLHttpRequest, orWebSocketcalls exist anywhere in the codebase - No third-party scripts, CDNs, or analytics
- PRs that introduce external data transmission will not be merged — see CONTRIBUTING.md
This project is open source! Contributions are welcome. Please read CONTRIBUTING.md before submitting a PR to understand the security rules and code standards.
Distributed under the MIT License. See LICENSE for details.