-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
43 lines (36 loc) · 929 Bytes
/
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
{
"manifest_version": 2,
"name": "Xdebug Session Cookie",
"version": "1.2",
"description": "Adds cookie that enables XDEBUG SESSION for php xdebug.",
"homepage_url": "https://github.com/kudlatyamroth/xdebug-session-cookie",
"icons": {
"64": "icons/bug-green-64.png",
"128": "icons/bug-green-128.png"
},
"permissions": [
"tabs",
"cookies",
"storage",
"<all_urls>"
],
"browser_action": {
"default_icon": {
"64": "icons/bug-light-64.png",
"128": "icons/bug-light-128.png"
},
"default_title": "xDEBUG Session (off)"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"scripts": ["xdebug.js"]
}
}