OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@WebInspector.Panel", | 4 "type": "@WebInspector.Panel", |
5 "name": "sources", | 5 "name": "sources", |
6 "title": "Sources", | 6 "title": "Sources", |
7 "order": 30, | 7 "order": 30, |
8 "className": "WebInspector.SourcesPanel" | 8 "className": "WebInspector.SourcesPanel" |
9 }, | 9 }, |
10 { | 10 { |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 "type": "setting", | 292 "type": "setting", |
293 "category": "Sources", | 293 "category": "Sources", |
294 "title": "Search in content scripts", | 294 "title": "Search in content scripts", |
295 "settingName": "searchInContentScripts", | 295 "settingName": "searchInContentScripts", |
296 "settingType": "boolean", | 296 "settingType": "boolean", |
297 "defaultValue": false | 297 "defaultValue": false |
298 }, | 298 }, |
299 { | 299 { |
300 "type": "setting", | 300 "type": "setting", |
301 "category": "Sources", | 301 "category": "Sources", |
| 302 "title": "Automatically reveal files in navigator", |
| 303 "settingName": "autoRevealInNavigator", |
| 304 "settingType": "boolean", |
| 305 "defaultValue": false |
| 306 }, |
| 307 { |
| 308 "type": "setting", |
| 309 "category": "Sources", |
302 "title": "Enable JavaScript source maps", | 310 "title": "Enable JavaScript source maps", |
303 "settingName": "jsSourceMapsEnabled", | 311 "settingName": "jsSourceMapsEnabled", |
304 "settingType": "boolean", | 312 "settingType": "boolean", |
305 "defaultValue": true | 313 "defaultValue": true |
306 }, | 314 }, |
307 { | 315 { |
308 "type": "setting", | 316 "type": "setting", |
309 "category": "Sources", | 317 "category": "Sources", |
310 "title": "Detect indentation", | 318 "title": "Detect indentation", |
311 "settingName": "textEditorAutoDetectIndent", | 319 "settingName": "textEditorAutoDetectIndent", |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 "resources": [ | 549 "resources": [ |
542 "uiList.css", | 550 "uiList.css", |
543 "navigatorView.css", | 551 "navigatorView.css", |
544 "revisionHistory.css", | 552 "revisionHistory.css", |
545 "serviceWorkersSidebar.css", | 553 "serviceWorkersSidebar.css", |
546 "sourcesPanel.css", | 554 "sourcesPanel.css", |
547 "sourcesSearch.css", | 555 "sourcesSearch.css", |
548 "sourcesView.css" | 556 "sourcesView.css" |
549 ] | 557 ] |
550 } | 558 } |
OLD | NEW |