-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (43 loc) · 1.21 KB
/
manifest.json
File metadata and controls
43 lines (43 loc) · 1.21 KB
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
{
"manifest_version": 3,
"name": "Firefox Profiler",
"version": "1.1.0",
"description": "A Chrome extension to capture performance profiles with Chrome's tracing profiler and export them directly to Firefox Profile Viewer",
"minimum_chrome_version": "92",
"icons": {
"16": "icons/off/icon16.png",
"32": "icons/off/icon32.png",
"48": "icons/off/icon48.png",
"128": "icons/off/icon128.png"
},
"permissions": ["activeTab", "scripting", "tabs", "debugger"],
"host_permissions": ["https://profiler.firefox.com/*"],
"background": {
"service_worker": "src/background.js",
"type": "module"
},
"commands": {
"start-stop-profiler": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "MacCtrl+Shift+1"
},
"description": "Start or stop the profiler."
},
"stop-profiler-and-capture": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "MacCtrl+Shift+2"
},
"description": "Stop the profiler and capture the profile."
}
},
"action": {
"default_icon": {
"16": "icons/off/icon16.png",
"32": "icons/off/icon32.png",
"48": "icons/off/icon48.png",
"128": "icons/off/icon128.png"
}
}
}