This repository has been archived by the owner on Mar 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmanifest.json
73 lines (73 loc) · 1.66 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
{
"manifest_version": 2,
"name": "Gecko Profiler",
"version": "0.30",
"description": "Gecko Profiler WebExtension.",
"icons": {
"32": "icons/icon.png",
"64": "icons/icon@2x.png"
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"browser_style": false,
"default_popup": "popup.html",
"default_title": "Gecko Profiler (off)",
"default_icon": "icons/toolbar_off.png",
"theme_icons": [
{
"dark": "icons/toolbar_off.png",
"light": "icons/toolbar_off_light.png",
"size": 32
}
]
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": true
},
"applications": {
"gecko": {
"id": "geckoprofiler@mozilla.com",
"strict_min_version": "55.0a1",
"update_url": "https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/master/updates.json"
}
},
"commands": {
"ToggleProfiler": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "MacCtrl+Shift+1"
},
"description": "Toggles the profiler on/off."
},
"CaptureProfile": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "MacCtrl+Shift+2"
},
"description": "Captures a profile if the profiler is on."
}
},
"permissions": [
"geckoProfiler",
"webNavigation",
"storage",
"https://perf-html.io/*",
"https://profiler.firefox.com/*"
],
"optional_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"https://perf-html.io/",
"https://profiler.firefox.com/"
],
"js": ["content-home.js"]
}
]
}