OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@WebInspector.PanelFactory", | 4 "type": "@WebInspector.PanelFactory", |
5 "name": "console", | 5 "name": "console", |
6 "title": "Console", | 6 "title": "Console", |
7 "order": 20, | 7 "order": 20, |
8 "className": "WebInspector.ConsolePanelFactory" | 8 "className": "WebInspector.ConsolePanelFactory" |
9 }, | 9 }, |
10 { | 10 { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 "type": "setting", | 71 "type": "setting", |
72 "category": "Console", | 72 "category": "Console", |
73 "title": "Log XMLHttpRequests", | 73 "title": "Log XMLHttpRequests", |
74 "settingName": "monitoringXHREnabled", | 74 "settingName": "monitoringXHREnabled", |
75 "settingType": "boolean", | 75 "settingType": "boolean", |
76 "defaultValue": false | 76 "defaultValue": false |
77 }, | 77 }, |
78 { | 78 { |
79 "type": "setting", | 79 "type": "setting", |
80 "category": "Console", | 80 "category": "Console", |
81 "title": "Preserve log upon navigation", | |
82 "settingName": "preserveConsoleLog", | |
83 "settingType": "boolean", | |
84 "defaultValue": false, | |
85 "options": [ | |
86 { "value": true, "title": "Preserve log upon navigation" }, | |
87 { "value": false, "title": "Do not preserve log upon navigation"
} | |
88 ] | |
89 }, | |
90 { | |
91 "type": "setting", | |
92 "category": "Console", | |
93 "title": "Show timestamps", | 81 "title": "Show timestamps", |
94 "settingName": "consoleTimestampsEnabled", | 82 "settingName": "consoleTimestampsEnabled", |
95 "settingType": "boolean", | 83 "settingType": "boolean", |
96 "defaultValue": false, | 84 "defaultValue": false, |
97 "options": [ | 85 "options": [ |
98 { "value": true, "title": "Show timestamps" }, | 86 { "value": true, "title": "Show timestamps" }, |
99 { "value": false, "title": "Hide timestamps" } | 87 { "value": false, "title": "Hide timestamps" } |
100 ] | 88 ] |
101 }, | 89 }, |
102 { | 90 { |
(...skipping 15 matching lines...) Expand all Loading... |
118 "scripts": [ | 106 "scripts": [ |
119 "ConsoleContextSelector.js", | 107 "ConsoleContextSelector.js", |
120 "ConsoleViewMessage.js", | 108 "ConsoleViewMessage.js", |
121 "ConsoleView.js", | 109 "ConsoleView.js", |
122 "ConsolePanel.js" | 110 "ConsolePanel.js" |
123 ], | 111 ], |
124 "resources": [ | 112 "resources": [ |
125 "consoleView.css" | 113 "consoleView.css" |
126 ] | 114 ] |
127 } | 115 } |
OLD | NEW |