-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
80 lines (80 loc) · 1.82 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
{
"name": "Aioewa",
"short_name": "Aioewa",
"manifest_version": 3,
"version": "1.0.0",
"version_name": "1-basic",
"default_locale": "en",
"description": "Aioewa with only the basic system and code. This uses addons and system addons (that is in /addon/*) to work. This makes it very dynamic, and can be the baseline for any extension.",
"author": "STIO",
"background": {
"service_worker": "/addon/basic/background.js",
"type": "module"
},
"minimum_chrome_version": "92",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"action": {
"default_icon": "/addon/basic/icon48.png",
"default_popup": "/addon/addons tab/addons.html",
"default_title": "Aioewa"
},
"icons": {
"16": "/addon/basic/icon16.png",
"48": "/addon/basic/icon48.png",
"128": "/addon/basic/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"/addon/basic/inject.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"/addon/*"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
},
"externally_connectable": {
"matches": [
"<all_urls>"
]
},
"options_ui": {
"page": "/addon/tabs/settings.html",
"open_in_tab": true
},
"homepage_url": "https://aioewa.stio.studio",
"sidebar_action": {
"default_icon": "/addon/basic/icon128.png",
"default_panel": "/addon/basic/settings.html",
"default_panel_width": 604,
"default_title": "",
"maximum_panel_width": 1000,
"minimum_panel_width": 400,
"panel_width": 604
}
}