forked from natefox/aws-ssh-rdp-links
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
35 lines (35 loc) · 829 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
{
"manifest_version": 2,
"name": "AWS SSH SSM RDP Links",
"description": "Adds SSH, SSM and RDP links to the AWS Console",
"homepage_url": "https://github.com/natefox/aws-ssh-rdp-links",
"version": "0.1.13",
"content_scripts": [
{
"matches": ["https://*.console.aws.amazon.com/ec2/*"],
"js": ["page.js"],
"css": ["page.css"],
"run_at": "document_start"
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"browser_action": {
"default_icon": {
"19": "icons/icon19.png",
"38": "icons/icon38.png"
},
"default_popup": "options.html",
"default_title": "AWS SSH SSM RDP Links"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"storage"
]
}