-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.chrome.json
48 lines (48 loc) · 1.21 KB
/
manifest.chrome.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
{
"manifest_version": 3,
"name": "prompster",
"version": "1.4.5",
"description": "Slash Commands for ChatGPT and Bard",
"icons": {
"16": "icons/icon16.png",
"19": "icons/icon19.png",
"38": "icons/icon38.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_icon": "icons/icon48.png",
"default_popup": "popup.html"
},
"permissions": ["storage", "clipboardRead"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://chatgpt.com/*",
"https://chat.openai.com/*",
"https://bard.google.com/*",
"https://gemini.google.com/*",
"https://claude.ai/*",
"https://aistudio.google.com/*",
"https://groq.com/*",
"https://platform.openai.com/playground/*",
"https://huggingface.co/chat/*",
"https://www.meta.ai/*",
"https://agentgpt.reworkd.ai/*",
"https://nat.dev/chat/*",
"https://poe.com/*",
"https://you.com/*"
],
"js": ["contentScript.js"]
}
],
"web_accessible_resources": [
{
"resources": ["static/default_prompts.json"],
"matches": ["<all_urls>"]
}
]
}