-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (56 loc) · 1.13 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"manifest_version": 3,
"name": "GenAI Prompt Extension",
"version": "2.0",
"permissions": [
"tabs",
"activeTab",
"scripting",
"storage",
"windows"
],
"host_permissions": [
"*://chatgpt.com/*",
"*://gemini.google.com/app/*",
"*://claude.ai/chats/*",
"*://chat.deepseek.com/*",
"*://chat.qwenlm.ai/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://chatgpt.com/*",
"*://gemini.google.com/app/*",
"*://claude.ai/chats/*",
"*://chat.deepseek.com/*",
"*://chat.qwenlm.ai/*"
],
"js": ["contentScript.js"]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Z",
"mac": "Command+Shift+X"
},
"description": "Activate the extension"
}
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "media/16.png",
"48": "media/48.png",
"128": "media/128.png"
}
},
"icons": {
"16": "media/16.png",
"48": "media/48.png",
"128": "media/128.png"
}
}