-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
38 lines (38 loc) · 979 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
38
{
"manifest_version": 3,
"name": "ChromeSal",
"description": "This extension allows ChromeOS devices to report to Sal. This extension must be installed on a managed device to function.",
"version": "3.2.1",
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/active_16.png",
"48": "icons/active_48.png",
"128": "icons/active_128.png"
},
"short_name": "ChromeSal",
"permissions": [
"system.memory",
"system.cpu",
"system.storage",
"management",
"storage",
"enterprise.deviceAttributes",
"alarms",
"identity",
"identity.email"
],
"storage": {
"managed_schema": "schema.json"
},
"minimum_chrome_version": "88",
"action": {
"default_icon": "icons/active_128.png",
"default_popup": "popup.html"
},
"content_security_policy": {
"service_worker": "script-src 'self' 'unsafe-eval'; object-src 'self'"
},
"host_permissions": ["https://*/*", "http://*/*"]
}