-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1.12 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
{
"manifest_version": 2,
"name": "MJsonViewer",
"version": "4.4",
"author": "D0n9X1n",
"description": "Yet, just another jsonviewer plugin for Firefox.",
"icons": {
"48": "icons/icon48.png",
"128": "icons/icon128.png",
"32": "icons/icon32.png"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"permissions": [
"storage",
"contextMenus",
"tabs",
"<all_urls>",
"webRequest",
"webRequestBlocking",
"clipboardWrite"
],
"content_scripts": [{
"all_frames": true,
"matches": [
"<all_urls>"
],
"js": [
"scripts/lib/relaxed-json.js",
"scripts/utils.js",
"scripts/common.js",
"scripts/config.js",
"scripts/render.js",
"scripts/renovate.js",
"scripts/dispatcher.js"
],
"run_at": "document_end"
}],
"background": {
"scripts": ["scripts/rewrite.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "{c5123f80-ddc9-4ae8-bc43-31f064b388e7}",
"strict_min_version": "42.0"
}
}
}