forked from firefox-devtools/har-export-trigger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (37 loc) · 790 Bytes
/
manifest.json
File metadata and controls
37 lines (37 loc) · 790 Bytes
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
{
"name": "HARExportTrigger",
"author": "Jan Odvarko",
"short_name": "HARExportTrigger",
"version": "0.6.1",
"devtools_page": "src/devtools.html",
"description": "Trigger HAR export from within a web page",
"manifest_version": 2,
"homepage_url": "https://github.com/devtools-html/har-export-trigger/",
"applications": {
"gecko": {
"id": "harexporttrigger@getfirebug.com",
"strict_min_version": "61.0"
}
},
"background": {
"scripts": [
"src/background.js"
]
},
"permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/content.js"
]
}
],
"web_accessible_resources": [
"lib/harapi.js"
]
}