├── .gitignore ├── LICENSE ├── README.md └── src ├── env.d.ts ├── index.html ├── package-lock.json ├── package.json ├── public ├── contentScripts │ ├── autofill.js │ ├── utils.js │ └── workday.js ├── icons │ ├── 128.png │ ├── 16.png │ └── 48.png └── manifest.json ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── vue_src ├── App.vue ├── assets └── main.css ├── components ├── EnterSkill.vue ├── EnterWorkExperience.vue ├── Explanation.vue ├── GithubStars.vue ├── GridDataField.vue ├── GridDataItem.vue ├── InputField.vue └── PrivacyToggle.vue ├── composables ├── Explanation.ts ├── Privacy.ts ├── ResumeDetails.ts ├── Skills.ts └── WorkExperience.ts └── main.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/README.md -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/index.html -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/package.json -------------------------------------------------------------------------------- /src/public/contentScripts/autofill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/public/contentScripts/autofill.js -------------------------------------------------------------------------------- /src/public/contentScripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/public/contentScripts/utils.js -------------------------------------------------------------------------------- /src/public/contentScripts/workday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/public/contentScripts/workday.js -------------------------------------------------------------------------------- /src/public/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/public/icons/128.png -------------------------------------------------------------------------------- /src/public/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/public/icons/16.png -------------------------------------------------------------------------------- /src/public/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/public/icons/48.png -------------------------------------------------------------------------------- /src/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/public/manifest.json -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/tsconfig.node.json -------------------------------------------------------------------------------- /src/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vite.config.ts -------------------------------------------------------------------------------- /src/vue_src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/App.vue -------------------------------------------------------------------------------- /src/vue_src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/assets/main.css -------------------------------------------------------------------------------- /src/vue_src/components/EnterSkill.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/components/EnterSkill.vue -------------------------------------------------------------------------------- /src/vue_src/components/EnterWorkExperience.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/components/EnterWorkExperience.vue -------------------------------------------------------------------------------- /src/vue_src/components/Explanation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/components/Explanation.vue -------------------------------------------------------------------------------- /src/vue_src/components/GithubStars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/components/GithubStars.vue -------------------------------------------------------------------------------- /src/vue_src/components/GridDataField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/components/GridDataField.vue -------------------------------------------------------------------------------- /src/vue_src/components/GridDataItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/components/GridDataItem.vue -------------------------------------------------------------------------------- /src/vue_src/components/InputField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/components/InputField.vue -------------------------------------------------------------------------------- /src/vue_src/components/PrivacyToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/components/PrivacyToggle.vue -------------------------------------------------------------------------------- /src/vue_src/composables/Explanation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/composables/Explanation.ts -------------------------------------------------------------------------------- /src/vue_src/composables/Privacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/composables/Privacy.ts -------------------------------------------------------------------------------- /src/vue_src/composables/ResumeDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/composables/ResumeDetails.ts -------------------------------------------------------------------------------- /src/vue_src/composables/Skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/composables/Skills.ts -------------------------------------------------------------------------------- /src/vue_src/composables/WorkExperience.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/composables/WorkExperience.ts -------------------------------------------------------------------------------- /src/vue_src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmillercode/Autofill-Jobs/HEAD/src/vue_src/main.ts --------------------------------------------------------------------------------