-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
35 lines (35 loc) · 823 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"manifest_version": 3,
"name": "ChatGPT Email Reviewer",
"author": "Ben Greenberg",
"homepage_url": "https://github.com/hummusonrails/chatgpt-gmail-suggestions-chrome-extension",
"version": "1.1",
"description": "Review and improve email style in Gmail drafts with ChatGPT",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https://*.google.com/*"
],
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_popup": "popup.html",
"default_title": "ChatGPT Email Reviewer"
},
"content_scripts": [
{
"matches": ["https://mail.google.com/*"],
"js": ["contentScript.js"]
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}