-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
36 lines (36 loc) · 881 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
36
{
"manifest_version": 3,
"author": "Sethu Senthil",
"name": "Copy for Chat GPT",
"icons": {
"16": "media/16.png",
"19": "media/19.png",
"38": "media/38.png",
"48": "media/48.png",
"128": "media/128.png"
},
"description": "This extension allows you to copy chat GPT responses with a click of a button or CMD+K and runs it through plagiarism detectors",
"version": "0.3.11",
"host_permissions": [
"https://writer.com/*"
],
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"init.js"
],
"css": [
"styles.css"
],
"matches": [
"https://chat.openai.com/*"
]
}
]
}