├── .gitignore ├── LICENSE ├── README.md ├── css ├── bootstrap.min.css ├── jquery-ui.css └── popup.css ├── data ├── README.md └── schools.json ├── img ├── editprofile.png ├── logo.png ├── logo_128x128.png └── popup.png ├── index.html ├── js ├── autofill.bundle.js ├── background.bundle.js ├── bootstrap.min.js ├── companydata.bundle.js ├── editprofile.bundle.js ├── jquery-ui.js ├── jquery.min.js ├── manager.bundle.js ├── popper.min.js ├── popup.bundle.js └── userdata.bundle.js ├── manifest.json └── popup.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | chromedriver -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/README.md -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/css/jquery-ui.css -------------------------------------------------------------------------------- /css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/css/popup.css -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | ### Store data here -------------------------------------------------------------------------------- /data/schools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/data/schools.json -------------------------------------------------------------------------------- /img/editprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/img/editprofile.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/logo_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/img/logo_128x128.png -------------------------------------------------------------------------------- /img/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/img/popup.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/index.html -------------------------------------------------------------------------------- /js/autofill.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/autofill.bundle.js -------------------------------------------------------------------------------- /js/background.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/background.bundle.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/companydata.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/companydata.bundle.js -------------------------------------------------------------------------------- /js/editprofile.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/editprofile.bundle.js -------------------------------------------------------------------------------- /js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/jquery-ui.js -------------------------------------------------------------------------------- /js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/jquery.min.js -------------------------------------------------------------------------------- /js/manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/manager.bundle.js -------------------------------------------------------------------------------- /js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/popper.min.js -------------------------------------------------------------------------------- /js/popup.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/popup.bundle.js -------------------------------------------------------------------------------- /js/userdata.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/js/userdata.bundle.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Autofill/HEAD/popup.html --------------------------------------------------------------------------------