-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
75 lines (75 loc) · 1.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "STargazer",
"description": "A 'click-to-build' xpath and css selector generator",
"version": "2.0.5",
"manifest_version": 3,
"commands": {
"open-sidebar": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Open sidebar"
},
"start-picking": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "Command+Shift+P"
},
"description": "Start picking an element"
}
},
"action": {
"default_title": "Open Sidebar"
},
"background": {
"service_worker": "/src/service_worker.js"
},
"permissions": [
"storage",
"scripting",
"activeTab",
"contextMenus",
"notifications",
"clipboardWrite"
],
"devtools_page": "/pages/devtools/bootstrap.html",
"web_accessible_resources": [
{
"resources": [
"/pages/sidebar/index.html"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"/model/model.json"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"/assets/logo.png"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"*://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"icons": {
"16": "assets/icons/16x16.png",
"32": "assets/icons/32x32.png",
"48": "assets/icons/48x48.png",
"128": "assets/icons/128x128.png"
}
}