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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 { | 124 { |
125 "title": "Short (HH:mm:ss.fff)", | 125 "title": "Short (HH:mm:ss.fff)", |
126 "text": "Short", | 126 "text": "Short", |
127 "value": "short" | 127 "value": "short" |
128 } | 128 } |
129 ] | 129 ] |
130 }, | 130 }, |
131 { | 131 { |
132 "type": "setting", | 132 "type": "setting", |
133 "category": "Console", | 133 "category": "Console", |
| 134 "title": "Show context labels (iframes, workers, etc)", |
| 135 "settingName": "consoleContextLabelsEnabled", |
| 136 "settingType": "boolean", |
| 137 "defaultValue": false, |
| 138 "options": [ |
| 139 { |
| 140 "value": true, |
| 141 "title": "Show context labels" |
| 142 }, |
| 143 { |
| 144 "value": false, |
| 145 "title": "Hide context labels" |
| 146 } |
| 147 ] |
| 148 }, |
| 149 { |
| 150 "type": "setting", |
| 151 "category": "Console", |
134 "title": "Autocomplete from history", | 152 "title": "Autocomplete from history", |
135 "settingName": "consoleHistoryAutocomplete", | 153 "settingName": "consoleHistoryAutocomplete", |
136 "settingType": "boolean", | 154 "settingType": "boolean", |
137 "defaultValue": true, | 155 "defaultValue": true, |
138 "options": [ | 156 "options": [ |
139 { | 157 { |
140 "value": true, | 158 "value": true, |
141 "title": "Autocomplete from history" | 159 "title": "Autocomplete from history" |
142 }, | 160 }, |
143 { | 161 { |
(...skipping 12 matching lines...) Expand all Loading... |
156 "ConsoleViewport.js", | 174 "ConsoleViewport.js", |
157 "ConsoleViewMessage.js", | 175 "ConsoleViewMessage.js", |
158 "ConsolePrompt.js", | 176 "ConsolePrompt.js", |
159 "ConsoleView.js", | 177 "ConsoleView.js", |
160 "ConsolePanel.js" | 178 "ConsolePanel.js" |
161 ], | 179 ], |
162 "resources": [ | 180 "resources": [ |
163 "consoleView.css" | 181 "consoleView.css" |
164 ] | 182 ] |
165 } | 183 } |
OLD | NEW |