OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@WebInspector.Panel", | 4 "type": "@WebInspector.Panel", |
5 "name": "network", | 5 "name": "network", |
6 "title": "Network", | 6 "title": "Network", |
7 "order": 1, | 7 "order": 1, |
8 "className": "WebInspector.NetworkPanel" | 8 "className": "WebInspector.NetworkPanel" |
9 }, | 9 }, |
10 { | 10 { |
11 "type": "@WebInspector.ContextMenu.Provider", | 11 "type": "@WebInspector.ContextMenu.Provider", |
12 "contextTypes": ["WebInspector.NetworkRequest", "WebInspector.Resour
ce", "WebInspector.UISourceCode"], | 12 "contextTypes": ["WebInspector.NetworkRequest", "WebInspector.Resour
ce", "WebInspector.UISourceCode"], |
13 "className": "WebInspector.NetworkPanel.ContextMenuProvider" | 13 "className": "WebInspector.NetworkPanel.ContextMenuProvider" |
14 }, | 14 }, |
15 { | 15 { |
16 "type": "@WebInspector.Revealer", | 16 "type": "@WebInspector.Revealer", |
17 "contextTypes": ["WebInspector.NetworkRequest"], | 17 "contextTypes": ["WebInspector.NetworkRequest"], |
18 "className": "WebInspector.NetworkPanel.RequestRevealer" | 18 "className": "WebInspector.NetworkPanel.RequestRevealer" |
19 } | 19 } |
20 ], | 20 ], |
21 "dependencies": [ "source_frame" ], | 21 "dependencies": ["source_frame"], |
22 "scripts": [ "NetworkPanel.js" ] | 22 "scripts": [ |
| 23 "HAREntry.js", |
| 24 "RequestView.js", |
| 25 "NetworkItemView.js", |
| 26 "RequestCookiesView.js", |
| 27 "RequestHeadersView.js", |
| 28 "RequestHTMLView.js", |
| 29 "RequestJSONView.js", |
| 30 "RequestPreviewView.js", |
| 31 "RequestResponseView.js", |
| 32 "RequestTimingView.js", |
| 33 "ResourceWebSocketFrameView.js", |
| 34 "NetworkPanel.js" |
| 35 ] |
23 } | 36 } |
OLD | NEW |