| 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": "WebInspector.ConsolePanel" | 9 "className": "WebInspector.ConsolePanel" |
| 10 }, | 10 }, |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "settingType": "boolean", | 65 "settingType": "boolean", |
| 66 "defaultValue": false, | 66 "defaultValue": false, |
| 67 "options": [ | 67 "options": [ |
| 68 { "value": true, "title": "Hide network messages" }, | 68 { "value": true, "title": "Hide network messages" }, |
| 69 { "value": false, "title": "Show network messages" } | 69 { "value": false, "title": "Show network messages" } |
| 70 ] | 70 ] |
| 71 }, | 71 }, |
| 72 { | 72 { |
| 73 "type": "setting", | 73 "type": "setting", |
| 74 "category": "Console", | 74 "category": "Console", |
| 75 "title": "Hide violations", |
| 76 "settingName": "hideViolationMessages", |
| 77 "settingType": "boolean", |
| 78 "defaultValue": true, |
| 79 "options": [ |
| 80 { "value": true, "title": "Hide violations" }, |
| 81 { "value": false, "title": "Show violations" } |
| 82 ] |
| 83 }, |
| 84 { |
| 85 "type": "setting", |
| 86 "category": "Console", |
| 75 "title": "Log XMLHttpRequests", | 87 "title": "Log XMLHttpRequests", |
| 76 "settingName": "monitoringXHREnabled", | 88 "settingName": "monitoringXHREnabled", |
| 77 "settingType": "boolean", | 89 "settingType": "boolean", |
| 78 "defaultValue": false | 90 "defaultValue": false |
| 79 }, | 91 }, |
| 80 { | 92 { |
| 81 "type": "setting", | 93 "type": "setting", |
| 82 "category": "Console", | 94 "category": "Console", |
| 83 "title": "Show timestamps", | 95 "title": "Show timestamps", |
| 84 "settingName": "consoleTimestampsEnabled", | 96 "settingName": "consoleTimestampsEnabled", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 109 "ConsoleContextSelector.js", | 121 "ConsoleContextSelector.js", |
| 110 "ConsoleViewMessage.js", | 122 "ConsoleViewMessage.js", |
| 111 "ConsolePrompt.js", | 123 "ConsolePrompt.js", |
| 112 "ConsoleView.js", | 124 "ConsoleView.js", |
| 113 "ConsolePanel.js" | 125 "ConsolePanel.js" |
| 114 ], | 126 ], |
| 115 "resources": [ | 127 "resources": [ |
| 116 "consoleView.css" | 128 "consoleView.css" |
| 117 ] | 129 ] |
| 118 } | 130 } |
| OLD | NEW |