-
-
Notifications
You must be signed in to change notification settings - Fork 140
/
manifest.json
58 lines (58 loc) · 1.57 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
{
"version": "5.0.2",
"name": "AWS Extend Switch Roles",
"description": "Extend your AWS IAM switching roles. You can set the configuration like aws config format",
"short_name": "Extend SwitchRole",
"permissions": ["activeTab", "storage"],
"icons" : {
"48": "icons/Icon_48x48.png",
"128": "icons/Icon_128x128.png"
},
"action": {
"default_title": "AWS Extend Switch Roles",
"default_icon": "icons/Icon_38x38.png",
"default_popup": "popup.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Comma"
}
}
},
"content_scripts": [
{
"matches": [
"https://*.console.aws.amazon.com/*",
"https://health.aws.amazon.com/*",
"https://lightsail.aws.amazon.com/*",
"https://*.console.amazonaws-us-gov.com/*",
"https://phd.amazonaws-us-gov.com/*",
"https://*.console.amazonaws.cn/*",
"https://health.amazonaws.cn/*"
],
"all_frames": true,
"js": [
"js/content.js"
],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"web_accessible_resources": [{
"resources": ["js/attach_target.js"],
"matches": [
"https://*.console.aws.amazon.com/*",
"https://health.aws.amazon.com/*",
"https://lightsail.aws.amazon.com/*",
"https://*.console.amazonaws-us-gov.com/*",
"https://phd.amazonaws-us-gov.com/*",
"https://*.console.amazonaws.cn/*",
"https://health.amazonaws.cn/*"
]
}],
"manifest_version": 3
}