-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
39 lines (39 loc) · 863 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
37
38
39
{
"manifest_version": 3,
"name": "PromptSnippets",
"version": "1.2.0",
"action": {},
"icons": {
"32": "logo-32.png",
"64": "logo-64.png",
"128": "logo-128.png",
"256": "logo-256.png"
},
"permissions": ["storage"],
"background": {
"service_worker": "src/background.ts",
"type": "module"
},
"commands": {
"toggle-prompt-snippets": {
"suggested_key": {
"default": "Alt+Shift+P",
"mac": "Command+Shift+P"
},
"description": "Toggle PromptSnippets in the current page"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/contentScript.tsx"]
}
],
"web_accessible_resources": [
{
"matches": ["<all_urls>"],
"resources": ["logo-32.png", "logo-64.png", "logo-128.png", "logo-256.png"],
"use_dynamic_url": true
}
]
}