-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmanifest.json
106 lines (106 loc) · 2.7 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAl8sdzpPbCg8pDh/1zrwU17WdrQROlsJsuxGA0RkMX0T0+b/Tarh4YcSA5NDhAqVO3hA8acmYnjkCCOMpP0roceVLBUOag9WxhpXak4A0ZPrwZi2bLPjx+gxkccyAp8bXwskSvjaL+vF/+zN8PT9yDz/Np7WJmfakksDPAZSoCnbykVbaEtpG8qbbUPgmjndrHkgV9cMjpNLAd+GnlARyQ/DceBPtA27z06N/nV+hS7TRIQJTx7XwH6rGKSJ1gn61/wtBWqZQyL3PA6997++55GYtWVB4pmLPXa0vog3GF2wFYf3geD9v2jfP4t9PhPZy9zESr6fP4nqd1HXd6pzamwIDAQAB",
"minimum_chrome_version": "108",
"manifest_version": 3,
"content_security_policy": {
"extension_pages": "frame-ancestors 'self'; script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"name": "__MSG_nassh_product_name__",
"version": "0.67",
"version_name": "ToT",
"default_locale": "en",
"icons": {
"128": "images/dev/icon-128.png",
"48": "images/dev/icon-48.png",
"32": "images/dev/icon-32.png",
"24": "images/dev/icon-24.png",
"16": "images/dev/icon-16.png"
},
"description": "Terminal emulator and SSH and SFTP client.",
"offline_enabled": true,
"options_page": "html/nassh_preferences_editor.html",
"incognito": "split",
"permissions": [
"clipboardRead",
"clipboardWrite",
"contextMenus",
"idle",
"notifications",
"storage",
"terminalPrivate",
"unlimitedStorage",
"fileSystemProvider",
"accessibilityFeatures.read"
],
"optional_host_permissions": [
"https://us-cloudtoplifecycle-googleapis.corp.google.com/*",
"https://uberproxy-debug.corp.google.com/*"
],
"sockets": {
"tcp": {
"connect": [
"*:*"
]
},
"tcpServer": {
"listen": [
"*:*"
]
},
"udp": {
"bind": [
"*:*"
],
"send": [
"*:*"
]
}
},
"file_system_provider_capabilities": {
"multiple_mounts": true,
"configurable": true,
"source": "network"
},
"web_accessible_resources": [
{
"resources": [
"html/nassh.html",
"html/nassh_google_relay.html"
],
"matches": [
"*://*/*"
]
}
],
"background": {
"service_worker": "js/nassh_background_main.js",
"type": "module"
},
"platforms": [
{
"nacl_arch": "x86-64",
"sub_package_path": "_platform_specific/x86-64/"
},
{
"nacl_arch": "x86-32",
"sub_package_path": "_platform_specific/x86-32/"
},
{
"nacl_arch": "arm",
"sub_package_path": "_platform_specific/arm/"
}
],
"omnibox": {
"keyword": "ssh"
},
"action": {
"default_popup": "html/nassh_popup.html",
"default_icon": {
"128": "images/dev/icon-128.png",
"48": "images/dev/icon-48.png",
"32": "images/dev/icon-32.png",
"24": "images/dev/icon-24.png",
"16": "images/dev/icon-16.png"
}
}
}