-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
49 lines (49 loc) · 1.53 KB
/
package.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
{
"title": "HAR Export Trigger",
"name": "harexporttrigger",
"version": "0.5.0-beta.10",
"id": "[email protected]",
"description": "Trigger HAR export any time directly from within a page",
"main": "index.js",
"icon": "chrome://harexporttrigger/skin/icon-16.png",
"author": "Firebug Working Group",
"contributors": [
"Jan Odvarko (Mozilla Corp.)"
],
"homepage": "https://github.com/firebug/har-export-trigger/wiki",
"forum": "https://groups.google.com/forum/#!forum/firebug",
"engines": {
"firefox": ">=42.0a1"
},
"license": "BSD License",
"repository": {
"type": "git",
"url": "https://github.com/firebug/har-export-trigger.git"
},
"dependencies": {
"firebug.sdk": "0.x"
},
"bugs": {
"url": "https://github.com/firebug/har-export-trigger/issues"
},
"preferences-branch": "netmonitor.har",
"preferences": [{
"name": "contentAPIToken",
"title": "Content API Token",
"description": "Set to true to expose HAR trigger API into the content",
"type": "string",
"value": ""
}, {
"name": "autoConnect",
"title": "Automatically connect to the backend",
"description": "Automatically connect to the backend, the Toolbox doesn't have to be open.",
"type": "bool",
"value": false
}, {
"name": "enableAutomation",
"title": "Enable automatic collecting of HAR data",
"description": "Flip this option to enable automatic collecting of HAR data, so HAR export can be triggered when necessary",
"type": "bool",
"value": false
}]
}