-
Notifications
You must be signed in to change notification settings - Fork 17
/
manifest.json
37 lines (37 loc) · 1014 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
{
"manifest_version": 2,
"name": "AWS SSO Containers",
"version": "1.12",
"description": "Automatically places AWS SSO calls into containers.",
"browser_specific_settings": {
"gecko": {
"id": "{5c474add-03f0-4c67-9479-f32939d7599a}",
"strict_min_version": "91.0"
}
},
"permissions": [
"activeTab",
"tabs",
"cookies",
"contextualIdentities",
"storage",
"webRequest",
"webRequestBlocking",
"https://signin.aws.amazon.com/saml",
"https://*.awsapps.com/start/*",
"https://*.amazonaws.com/federation/console?*",
"https://*.amazonaws-us-gov.com/federation/console?*",
"https://*.amazonaws.cn/federation/console?*",
"https://*.amazonaws.com/federation/instance/appinstances",
"https://*.amazonaws-us-gov.com/federation/instance/appinstances",
"https://*.amazonaws.cn/federation/instance/appinstances"
],
"background": {
"scripts": [
"containerize.js"
]
},
"options_ui": {
"page": "options.html"
}
}