| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "console", | 6 "id": "console", |
| 7 "title": "Console", | 7 "title": "Console", |
| 8 "order": 20, | 8 "order": 20, |
| 9 "className": "Console.ConsolePanel" | 9 "className": "Console.ConsolePanel" |
| 10 }, | 10 }, |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 "value": false, | 75 "value": false, |
| 76 "title": "Show network messages" | 76 "title": "Show network messages" |
| 77 } | 77 } |
| 78 ] | 78 ] |
| 79 }, | 79 }, |
| 80 { | 80 { |
| 81 "type": "setting", | 81 "type": "setting", |
| 82 "category": "Console", | 82 "category": "Console", |
| 83 "title": "Hide violations", | |
| 84 "settingName": "hideViolationMessages", | |
| 85 "settingType": "boolean", | |
| 86 "defaultValue": true, | |
| 87 "options": [ | |
| 88 { | |
| 89 "value": true, | |
| 90 "title": "Hide violations" | |
| 91 }, | |
| 92 { | |
| 93 "value": false, | |
| 94 "title": "Show violations" | |
| 95 } | |
| 96 ] | |
| 97 }, | |
| 98 { | |
| 99 "type": "setting", | |
| 100 "category": "Console", | |
| 101 "title": "Log XMLHttpRequests", | 83 "title": "Log XMLHttpRequests", |
| 102 "settingName": "monitoringXHREnabled", | 84 "settingName": "monitoringXHREnabled", |
| 103 "settingType": "boolean", | 85 "settingType": "boolean", |
| 104 "defaultValue": false | 86 "defaultValue": false |
| 105 }, | 87 }, |
| 106 { | 88 { |
| 107 "type": "setting", | 89 "type": "setting", |
| 108 "category": "Console", | 90 "category": "Console", |
| 109 "title": "Timestamps:", | 91 "title": "Timestamps:", |
| 110 "settingName": "consoleTimestampFormat", | 92 "settingName": "consoleTimestampFormat", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "ConsoleViewport.js", | 138 "ConsoleViewport.js", |
| 157 "ConsoleViewMessage.js", | 139 "ConsoleViewMessage.js", |
| 158 "ConsolePrompt.js", | 140 "ConsolePrompt.js", |
| 159 "ConsoleView.js", | 141 "ConsoleView.js", |
| 160 "ConsolePanel.js" | 142 "ConsolePanel.js" |
| 161 ], | 143 ], |
| 162 "resources": [ | 144 "resources": [ |
| 163 "consoleView.css" | 145 "consoleView.css" |
| 164 ] | 146 ] |
| 165 } | 147 } |
| OLD | NEW |