| 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": "@Components.DOMPresentationUtils.MarkerDecorator", | 12 "type": "@Components.DOMPresentationUtils.MarkerDecorator", |
| 13 "factoryName": "Components.DOMPresentationUtils.GenericDecorator", | 13 "factoryName": "Components.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": "customNetworkConditions", | |
| 21 "settingType": "array", | |
| 22 "defaultValue": [] | |
| 23 }, | |
| 24 { | |
| 25 "type": "@UI.ActionDelegate", | |
| 26 "actionId": "components.network-offline", | |
| 27 "category": "Network", | |
| 28 "title": "Go offline", | |
| 29 "className": "Components.NetworkConditionsActionDelegate", | |
| 30 "tags": "device" | |
| 31 }, | |
| 32 { | |
| 33 "type": "@UI.ActionDelegate", | |
| 34 "actionId": "components.network-online", | |
| 35 "category": "Network", | |
| 36 "title": "Go online", | |
| 37 "className": "Components.NetworkConditionsActionDelegate", | |
| 38 "tags": "device" | |
| 39 }, | |
| 40 { | |
| 41 "type": "view", | |
| 42 "location": "settings-view", | |
| 43 "id": "network-conditions", | |
| 44 "title": "Throttling", | |
| 45 "order": "35", | |
| 46 "className": "Components.NetworkConditionsSettingsTab", | |
| 47 "settings": [ | |
| 48 "customNetworkConditions" | |
| 49 ] | |
| 50 } | 17 } |
| 51 ], | 18 ], |
| 52 "dependencies": [ | 19 "dependencies": [ |
| 53 "bindings", | 20 "bindings", |
| 54 "platform", | 21 "platform", |
| 55 "ui" | 22 "ui" |
| 56 ], | 23 ], |
| 57 "scripts": [ | 24 "scripts": [ |
| 58 "BreakpointsSidebarPaneBase.js", | 25 "BreakpointsSidebarPaneBase.js", |
| 59 "CustomPreviewComponent.js", | 26 "CustomPreviewComponent.js", |
| 60 "CPUThrottlingManager.js", | 27 "CPUThrottlingManager.js", |
| 61 "DataSaverInfobar.js", | 28 "DataSaverInfobar.js", |
| 62 "DOMBreakpointsSidebarPane.js", | 29 "DOMBreakpointsSidebarPane.js", |
| 63 "DOMPresentationUtils.js", | 30 "DOMPresentationUtils.js", |
| 64 "DockController.js", | 31 "DockController.js", |
| 65 "JavaScriptAutocomplete.js", | 32 "JavaScriptAutocomplete.js", |
| 66 "Linkifier.js", | 33 "Linkifier.js", |
| 67 "NetworkConditionsSelector.js", | |
| 68 "ObjectPopoverHelper.js", | 34 "ObjectPopoverHelper.js", |
| 69 "ObjectPropertiesSection.js", | 35 "ObjectPropertiesSection.js", |
| 70 "RemoteObjectPreviewFormatter.js", | 36 "RemoteObjectPreviewFormatter.js", |
| 71 "EventListenersUtils.js", | 37 "EventListenersUtils.js", |
| 72 "EventListenersView.js", | 38 "EventListenersView.js", |
| 73 "Reload.js" | 39 "Reload.js" |
| 74 ], | 40 ], |
| 75 "resources": [ | 41 "resources": [ |
| 76 "breakpointsList.css", | 42 "breakpointsList.css", |
| 77 "customPreviewComponent.css", | 43 "customPreviewComponent.css", |
| 78 "eventListenersView.css", | 44 "eventListenersView.css", |
| 79 "domUtils.css", | 45 "domUtils.css", |
| 80 "networkConditionsSettingsTab.css", | |
| 81 "objectPropertiesSection.css", | 46 "objectPropertiesSection.css", |
| 82 "objectValue.css" | 47 "objectValue.css" |
| 83 ] | 48 ] |
| 84 } | 49 } |
| OLD | NEW |