| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "setting", | 4 "type": "setting", |
| 5 "category": "Console", | 5 "category": "Console", |
| 6 "title": "Enable custom formatters", | 6 "title": "Enable custom formatters", |
| 7 "settingName": "customFormatters", | 7 "settingName": "customFormatters", |
| 8 "settingType": "boolean", | 8 "settingType": "boolean", |
| 9 "defaultValue": false | 9 "defaultValue": false |
| 10 }, | 10 }, |
| 11 { | 11 { |
| 12 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator", | 12 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator", |
| 13 "className": "WebInspector.DOMPresentationUtils.GenericDecorator", | 13 "className": "WebInspector.DOMPresentationUtils.GenericDecorator", |
| 14 "marker": "breakpoint-marker", | 14 "marker": "breakpoint-marker", |
| 15 "title": "DOM Breakpoint", | 15 "title": "DOM Breakpoint", |
| 16 "color": "rgb(105, 140, 254)" | 16 "color": "rgb(105, 140, 254)" |
| 17 }, |
| 18 { |
| 19 "type": "setting", |
| 20 "settingName": "networkConditionsCustomProfiles", |
| 21 "settingType": "array", |
| 22 "defaultValue": [] |
| 23 }, |
| 24 { |
| 25 "type": "settings-view", |
| 26 "name": "network-conditions", |
| 27 "title": "Throttling", |
| 28 "order": "35", |
| 29 "className": "WebInspector.NetworkConditionsSettingsTab", |
| 30 "settings": [ |
| 31 "networkConditionsCustomProfiles" |
| 32 ] |
| 17 } | 33 } |
| 18 ], | 34 ], |
| 19 "dependencies": [ | 35 "dependencies": [ |
| 20 "bindings", | 36 "bindings", |
| 21 "platform", | 37 "platform", |
| 22 "ui" | 38 "ui" |
| 23 ], | 39 ], |
| 24 "scripts": [ | 40 "scripts": [ |
| 25 "BreakpointsSidebarPaneBase.js", | 41 "BreakpointsSidebarPaneBase.js", |
| 26 "CustomPreviewSection.js", | 42 "CustomPreviewSection.js", |
| 27 "DataSaverInfobar.js", | 43 "DataSaverInfobar.js", |
| 28 "DebuggerPresentationUtils.js", | 44 "DebuggerPresentationUtils.js", |
| 29 "DOMBreakpointsSidebarPane.js", | 45 "DOMBreakpointsSidebarPane.js", |
| 30 "DOMPresentationUtils.js", | 46 "DOMPresentationUtils.js", |
| 31 "DockController.js", | 47 "DockController.js", |
| 32 "Drawer.js", | 48 "Drawer.js", |
| 33 "ExecutionContextSelector.js", | 49 "ExecutionContextSelector.js", |
| 34 "ExecutionContextModel.js", | 50 "ExecutionContextModel.js", |
| 35 "HandlerRegistry.js", | 51 "HandlerRegistry.js", |
| 36 "InspectorView.js", | 52 "InspectorView.js", |
| 37 "Linkifier.js", | 53 "Linkifier.js", |
| 54 "NetworkConditionsSelector.js", |
| 38 "ObjectPopoverHelper.js", | 55 "ObjectPopoverHelper.js", |
| 39 "ObjectPropertiesSection.js", | 56 "ObjectPropertiesSection.js", |
| 40 "RemoteObjectPreviewFormatter.js", | 57 "RemoteObjectPreviewFormatter.js", |
| 41 "ShortcutsScreen.js", | 58 "ShortcutsScreen.js", |
| 42 "EventListenersUtils.js", | 59 "EventListenersUtils.js", |
| 43 "EventListenersView.js", | 60 "EventListenersView.js", |
| 44 "Reload.js" | 61 "Reload.js" |
| 45 ], | 62 ], |
| 46 "resources": [ | 63 "resources": [ |
| 47 "breakpointsList.css", | 64 "breakpointsList.css", |
| 48 "customPreviewSection.css", | 65 "customPreviewSection.css", |
| 49 "eventListenersView.css", | 66 "eventListenersView.css", |
| 50 "domUtils.css", | 67 "domUtils.css", |
| 51 "inspectorViewTabbedPane.css", | 68 "inspectorViewTabbedPane.css", |
| 69 "networkConditionsSettingsTab.css", |
| 52 "objectPropertiesSection.css", | 70 "objectPropertiesSection.css", |
| 53 "objectValue.css" | 71 "objectValue.css" |
| 54 ] | 72 ] |
| 55 } | 73 } |
| OLD | NEW |