-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmanifest.json
51 lines (51 loc) · 1.48 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
{
"name": "SAML-tracer",
"description": "A debugger for viewing SAML messages",
"author": "Olav Morken, Jaime Perez, Thijs Kinkhorst, Jan Köhler, Tim van Dijen",
"manifest_version": 3,
"version": "1.8.0",
"homepage_url": "https://github.com/SimpleSAMLphp/SAML-tracer",
"icons": {
"16": "src/resources/images/icon16.png",
"32": "src/resources/images/icon32.png",
"48": "src/resources/images/icon48.png",
"96": "src/resources/images/icon96.png",
"128": "src/resources/images/icon128.png"
},
"permissions": [
"webRequest"
],
"host_permissions": [
"<all_urls>"
],
"content_security_policy": {
"extension_pages": "default-src 'none'; img-src 'self'; script-src 'self'; style-src 'self';"
},
"background": {
"service_worker": "bootstrap.js",
"scripts": ["bootstrap.js"]
},
"action": {
"default_icon": {
"16": "src/resources/images/icon16.png",
"32": "src/resources/images/icon32.png",
"48": "src/resources/images/icon48.png",
"96": "src/resources/images/icon96.png",
"128": "src/resources/images/icon128.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{d3e01ff2-9a3a-4007-8f6e-7acd9a5de263}",
"strict_min_version": "121.0"
}
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Opens SAML-tracer if it's not yet started or brings it back to the front if it's already started."
}
}
}