-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (61 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"title": "easy Xdebug (with moveable icon)",
"name": "easyxdebug",
"id":"jid0-BorozO8WGKHFMLkJSg7FSAJtr8o@jetpack",
"version": "0.9.4",
"description": "set debug cookies (eg $cookie[XDEBUG_SESSION]='netbeans-xdebug') on your localhost, to enable remote debugging in eclipse/netbeans. redo of 'easy Xdebug' +moveable icons (eg. to bookmarkbar) +refreshes the icons on tab change +config cookies",
"main": "index.js",
"author": "windwerfer",
"engines": {
"firefox": ">=38.0a1"
},
"multiprocessCompatible": true,
"preferences": [
{
"name": "DebugCookieName",
"title": "Name of the debug cookie",
"description": "Default: XDEBUG_SESSION",
"type": "string",
"value": "XDEBUG_SESSION"
},
{
"name": "DebugCookieValue",
"title": "Value of the debug cookie",
"description": "Default: netbeans-xdebug",
"type": "string",
"value": "netbeans-xdebug"
},
{
"name": "DebugCookieTimeout",
"title": "Timeout of the debug cookie",
"description": "in minutes, -1 for length of session, default: -1",
"type": "string",
"value": "-1"
},
{
"name": "ProfilerCookieName",
"title": "Name of the profile cookie",
"description": "Default: XDEBUG_PROFILE",
"type": "string",
"value": "XDEBUG_PROFILE"
},
{
"name": "ProfilerCookieValue",
"title": "Value of the profiler cookie",
"description": "Default: 1",
"type": "string",
"value": "1"
},
{
"name": "ProfilerCookieTimeout",
"title": "Timeout of the profiler cookie",
"description": "in minutes, -1 for length of session, default: -1",
"type": "string",
"value": "-1"
}
],
"license": "MIT",
"keywords": [
"jetpack"
]
}