├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ └── greetings.yml ├── .gitignore ├── Developer_Guide.md ├── README.md ├── chrome-extension ├── background.js ├── gmail-script.js ├── gpt-script.js ├── index.html ├── logo.png └── manifest.json └── screenshots ├── background.png ├── certificate.jpg ├── extension.png ├── gmail-script.png ├── gpt-script.png ├── output-1.png ├── output-2.png ├── output-3.png └── popup.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Developer_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/Developer_Guide.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/README.md -------------------------------------------------------------------------------- /chrome-extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/chrome-extension/background.js -------------------------------------------------------------------------------- /chrome-extension/gmail-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/chrome-extension/gmail-script.js -------------------------------------------------------------------------------- /chrome-extension/gpt-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/chrome-extension/gpt-script.js -------------------------------------------------------------------------------- /chrome-extension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/chrome-extension/index.html -------------------------------------------------------------------------------- /chrome-extension/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/chrome-extension/logo.png -------------------------------------------------------------------------------- /chrome-extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/chrome-extension/manifest.json -------------------------------------------------------------------------------- /screenshots/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/screenshots/background.png -------------------------------------------------------------------------------- /screenshots/certificate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/screenshots/certificate.jpg -------------------------------------------------------------------------------- /screenshots/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/screenshots/extension.png -------------------------------------------------------------------------------- /screenshots/gmail-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/screenshots/gmail-script.png -------------------------------------------------------------------------------- /screenshots/gpt-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/screenshots/gpt-script.png -------------------------------------------------------------------------------- /screenshots/output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/screenshots/output-1.png -------------------------------------------------------------------------------- /screenshots/output-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/screenshots/output-2.png -------------------------------------------------------------------------------- /screenshots/output-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/screenshots/output-3.png -------------------------------------------------------------------------------- /screenshots/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withrvr/ChatGPT-Gmail-Bot/HEAD/screenshots/popup.png --------------------------------------------------------------------------------