Skip to content

Commit 5407ed5

Browse files
committed
✅: version 1.0.0
1 parent 29593c7 commit 5407ed5

File tree

11 files changed

+230
-12
lines changed

11 files changed

+230
-12
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
12+
**To Reproduce**
13+
Steps to reproduce the behavior:
14+
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Version [e.g. 22]
31+
32+
**Smartphone (please complete the following information):**
33+
34+
- Device: [e.g. iPhone6]
35+
- OS: [e.g. iOS8.1]
36+
- Browser [e.g. stock browser, safari]
37+
- Version [e.g. 22]
38+
39+
**Additional context**
40+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/custom.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Custom issue template
3+
about: Describe this issue template's purpose here.
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
8+
9+
**Is your feature request related to a problem? Please describe.**
10+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
11+
12+
**Describe the solution you'd like**
13+
A clear and concise description of what you want to happen.
14+
15+
**Describe alternatives you've considered**
16+
A clear and concise description of any alternative solutions or features you've considered.
17+
18+
**Additional context**
19+
Add any other context or screenshots about the feature request here.

.github/workflows/greetings.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Greetings
2+
3+
on: [pull_request, issues]
4+
5+
jobs:
6+
greeting:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/first-interaction@v1
10+
with:
11+
repo-token: ${{ secrets.GITHUB_TOKEN }}
12+
issue-message: "Thx we will fix the issue very soon"
13+
pr-message: "Thx to contribute we will verify and add the changes soon"

Developer_Guide.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Run
2+
3+
1. Go to, Visit
4+
- [chrome://extensions/](chrome://extensions/)
5+
2. Enable Developer mode ... on top right corner
6+
3. click on Load unpacked ..... shows on top left corner
7+
- and select [chrome-extension](./chrome-extension/) folder
8+
- to see the result
9+
10+
# Technology
11+
12+
## In Use
13+
14+
- Basic HTML, CSS, JS
15+
- ...
16+
17+
## Will Use
18+
19+
-

README.md

+31-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,38 @@
1-
# 📊: ChatGPT Gmail Bot
21

3-
```
4-
- Chrome Extension
5-
- which connect ChatGPT with Gmail
6-
- and write reply email for incoming emails
7-
```
2+
<p align="center">
3+
<a href="#" target="_blank">
4+
<img src="./chrome-extension/logo.png" alt="logo" width="200">
5+
</a>
6+
</p>
87

9-
- [Screenshots of this project](./screenshots/)
8+
<h3 align="center"> <b>ChatGPT Gmail Bot</b> </h3>
109

11-
# 📽️: Udemy
10+
<div align="center">
11+
<p> Chrome Extension to connect ChatGPT with gmail, <br> and write reply email for incoming emails </p>
1212

13+
<a href="https://github.com/withrvr/ChatGPT-Gmail-Bot/issues/new?template=bug_report.md" target="_blank">Report Bug</a>
14+
|
15+
<a href="https://github.com/withrvr/ChatGPT-Gmail-Bot/issues/new?template=feature_request.md" target="_blank">Request Feature</a>
16+
|
17+
<a href="https://github.com/withrvr/ChatGPT-Gmail-Bot/discussions" target="_blank">Discussions</a>
18+
19+
</div>
20+
21+
<!-- <h3 align="center">
22+
<a href="./screenshots/" target="_blank"><b>Screenshots of this project</b></a>
23+
</h3> -->
24+
25+
# 📸: Screenshots of this projects
26+
27+
- How to run the project ... [Developer_Guide.md](./Developer_Guide.md)
28+
- for more photos visit [/screenshots](./screenshots/) folder
29+
30+
![output-1](./screenshots/output-1.png)
31+
32+
# 🔗: Links
33+
34+
- [Official Chrome Extension Docs](https://developer.chrome.com/docs/extensions/)
35+
<!-- - Deployed extension link here -->
1336
- Course :- https://www.udemy.com/course/chatgpt-bot/
1437
- Certificate :- https://www.udemy.com/certificate/UC-b46816a7-81f0-462e-8ebd-a11c5662701f/
1538

chrome-extension/index.html

+93-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,96 @@
1-
<html>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
8+
<title>ChatGPT Gmail Bot - Chrome Extension</title>
9+
10+
<style>
11+
body {
12+
width: 500px;
13+
margin: 20px;
14+
}
15+
footer {
16+
display: flex;
17+
flex-direction: row;
18+
justify-content: space-evenly;
19+
}
20+
footer > a {
21+
text-decoration: none;
22+
font-weight: 500;
23+
}
24+
ol {
25+
/* font-weight: bold; */
26+
font-size: 18px;
27+
}
28+
h1 {
29+
font-family: "Comic Sans MS", "Comic Sans", cursive;
30+
}
31+
</style>
32+
</head>
33+
234
<body>
3-
<h1>Hello World !!!</h1>
35+
<header style="text-align: center">
36+
<h1>ChatGPT Gmail Bot</h1>
37+
</header>
38+
<main>
39+
<ol>
40+
<li>Install the extension (✅ Done).</li>
41+
<li>
42+
Go to
43+
<ul>
44+
<li>
45+
<a href="https://mail.google.com/" target="_blank">
46+
GMail
47+
</a>
48+
</li>
49+
<li>
50+
<a href="https://chat.openai.com/" target="_blank">
51+
ChatGPT
52+
</a>
53+
</li>
54+
</ul>
55+
</li>
56+
<li>
57+
If the tab was opened before the extension was installed,
58+
then please reload the tab once to use the extension
59+
</li>
60+
<p>
61+
Now since both GMail and ChatGPT is open
62+
<br />
63+
Now do the the process you do daily
64+
</p>
65+
<li>Open the email you want to send reply to</li>
66+
<li>Then click on the Reply Button</li>
67+
<br />
68+
<li>Now reply email will be generated automatically</li>
69+
</ol>
70+
</main>
71+
72+
<!-- <footer style="text-align: center"> -->
73+
<footer>
74+
<a
75+
href="https://github.com/withrvr/ChatGPT-Gmail-Bot/issues/"
76+
target="_blank"
77+
>
78+
Report Issue
79+
</a>
80+
<!-- &nbsp;&nbsp;|&nbsp;&nbsp; -->
81+
<a
82+
href="https://github.com/withrvr/ChatGPT-Gmail-Bot"
83+
target="_blank"
84+
>
85+
Github Repo
86+
</a>
87+
<!-- &nbsp;|&nbsp;
88+
<a
89+
href="#"
90+
target="_blank"
91+
>
92+
Rate Extension
93+
</a> -->
94+
</footer>
495
</body>
596
</html>

chrome-extension/logo.png

6.47 KB
Loading

chrome-extension/manifest.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"manifest_version": 3,
33

44
"name": "ChatGPT Gmail Bot",
5-
"description": "Chrome Extension to connect ChatGPT with gmail, and write reply email for incoming emails",
6-
"version": "0.4",
5+
"description": "Write Emails Automatically for Incoming Emails for you, using ChatGPT",
6+
"version": "1.0.0",
77
"author": "Raghav Rathi",
88

99
"action": {
@@ -28,5 +28,11 @@
2828

2929
"background": {
3030
"service_worker": "background.js"
31+
},
32+
33+
"icons": {
34+
"16": "logo.png",
35+
"48": "logo.png",
36+
"128": "logo.png"
3137
}
3238
}

screenshots/output-1.png

276 KB
Loading

screenshots/output-2.png

67.9 KB
Loading

0 commit comments

Comments
 (0)