-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
executable file
·59 lines (51 loc) · 1.5 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
{
"manifest_version": 3,
"name": "Mojira Plus",
"version": "0.7",
"description": "Enables various additional features on Mojang's bug tracker Mojira for helpers, moderators, and other Mojira power users.",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "101.0"
}
},
"icons": {
"48": "icons/mojira-logo-48.png",
"96": "icons/mojira-logo-96.png"
},
"background": {
"service_worker": "src/background.js",
"type": "module"
},
"options_ui": {
"page": "src/options/options.html",
"browser_style": true
},
"action": {
"default_icon": "icons/mojira-logo-32.png",
"default_title": "Mojira Plus",
"browser_style": true
},
"content_scripts": [{
"matches": ["*://bugs.mojang.com/*"],
"css": [
"src/content/styling.css"
],
"js": [
"lib/browser-polyfill.min.js",
"src/content/util.js",
"src/content/vars.js",
"src/content/insertMessage.js",
"src/content/dropdown.js",
"src/content/postpone.js",
"src/content/sorting.js",
"src/content/permissionCheck.js",
"src/content/content.js"
]
}],
"permissions": [
"alarms",
"clipboardRead",
"storage"
]
}