-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
57 lines (48 loc) · 1.09 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Resenet",
"description": "Replay a once unplayable game, SENET (The only good recreation). Decompiled and modded from the O.G. SENET ONLINE.",
"version": "1.2",
"action":
{
"default_icon": "nacl_icon_128.png"
},
"icons":
{
"16": "nacl_icon_16.png",
"128": "nacl_icon_128.png"
},
"permissions":
[
"unlimitedStorage",
"tabs"
],
"chrome_url_overrides": {
"newtab": "index.html"
},
"requirements":
{
"3D":
{
"features": ["webgl"]
}
},
"platforms":
[
{
"nacl_arch": "x86-64",
"sub_package_path": "_platform_specific/x86-64/"
},
{
"nacl_arch": "x86-32",
"sub_package_path": "_platform_specific/x86-32/"
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"minimum_chrome_version": "97",
"offline_enabled": true
}