-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
46 lines (46 loc) · 1.23 KB
/
Copy pathmanifest.json
File metadata and controls
46 lines (46 loc) · 1.23 KB
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
{
"manifest_version": 3,
"name": "Prompt Enhancer",
"description": "Transform any prompt into a powerful, optimized prompt using advanced AI techniques. Grammarly for AI prompts.",
"version": "1.1.0",
"icons": {
"16": "icons/icon.svg",
"32": "icons/icon.svg",
"48": "icons/icon.svg",
"128": "icons/icon.svg"
},
"action": {
"default_popup": "src/popup/index.html",
"default_icon": {
"16": "icons/icon.svg",
"32": "icons/icon.svg",
"48": "icons/icon.svg",
"128": "icons/icon.svg"
},
"default_title": "Prompt Enhancer"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://generativelanguage.googleapis.com/*",
"https://openrouter.ai/*"
],
"content_scripts": [
{
"matches": [
"https://chat.openai.com/*",
"https://chatgpt.com/*",
"https://gemini.google.com/*",
"https://claude.ai/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
]
}