-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
96 lines (90 loc) · 2.3 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
{
"description": "Add ambient music, typing sounds, and more to your browsing experience.",
"manifest_version": 2,
"name": "GX Mods",
"short_name": "GXM",
"version": "6.5.1",
"developer": {
"name": "Noble (@[email protected]), Taylor (@[email protected])",
"url": "https://github.com/noblereign/GX-Mods-Extension"
},
"homepage_url": "https://github.com/noblereign/GX-Mods-Extension/",
"icons": {
"48": "icons/beasts-48.png"
},
"background": {
"page": "background-page.html"
},
"options_ui": {
"page": "mods/manager.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_scripts/gx_music.js", "content_scripts/gx_accents.js"],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_start"
},
{
"matches": ["https://store.gx.me/*"],
"js": ["content_scripts/gx_store_mixin.js"],
"css": ["content_scripts/gx_store_mixin.css"]
}
],
"permissions": [
"activeTab", "tabs", "<all_urls>", "storage", "webNavigation", "downloads", "unlimitedStorage", "notifications", "theme", "*://mods.store.gx.me/*"
],
"optional_permissions": [
"proxy", "search"
],
"browser_action": {
"default_icon": "icons/beasts-32.png",
"theme_icons": [{
"light": "icons/beasts-32-light.png",
"dark": "icons/beasts-32.png",
"size": 32
}],
"default_title": "GX Mods",
"default_popup": "popup/settings_menu.html"
},
"commands": {
"background-music": {
"suggested_key": {
"default": "Ctrl+Alt+B"
},
"description": "Toggle background music"
},
"keyboard-sounds": {
"suggested_key": {
"default": "Ctrl+Alt+K"
},
"description": "Toggle keyboard sounds"
},
"bgm-automute": {
"description": "Toggle automatic music mute"
},
"gxm-mute": {
"suggested_key": {
"default": "Ctrl+Alt+G"
},
"description": "Toggle global mute"
},
"mod-manager": {
"description": "Open Mod Manager"
}
},
"web_accessible_resources": [
"music/*.mp3"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "77.0"
},
"gecko_android": {
"strict_min_version": "120.0"
}
}
}