| 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 }, |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 }, | 39 }, |
| 40 { | 40 { |
| 41 "type": "settings-view", | 41 "type": "settings-view", |
| 42 "name": "network-conditions", | 42 "name": "network-conditions", |
| 43 "title": "Throttling", | 43 "title": "Throttling", |
| 44 "order": "35", | 44 "order": "35", |
| 45 "className": "WebInspector.NetworkConditionsSettingsTab", | 45 "className": "WebInspector.NetworkConditionsSettingsTab", |
| 46 "settings": [ | 46 "settings": [ |
| 47 "customNetworkConditions" | 47 "customNetworkConditions" |
| 48 ] | 48 ] |
| 49 }, |
| 50 { |
| 51 "type": "@WebInspector.ActionDelegate", |
| 52 "actionId": "components.request-app-banner", |
| 53 "className": "WebInspector.RequestAppBannerActionDelegate", |
| 54 "title": "Trigger add to homescreen" |
| 49 } | 55 } |
| 50 ], | 56 ], |
| 51 "dependencies": [ | 57 "dependencies": [ |
| 52 "bindings", | 58 "bindings", |
| 53 "platform", | 59 "platform", |
| 54 "ui" | 60 "ui" |
| 55 ], | 61 ], |
| 56 "scripts": [ | 62 "scripts": [ |
| 57 "BreakpointsSidebarPaneBase.js", | 63 "BreakpointsSidebarPaneBase.js", |
| 58 "CustomPreviewSection.js", | 64 "CustomPreviewSection.js", |
| 59 "DataSaverInfobar.js", | 65 "DataSaverInfobar.js", |
| 60 "DOMBreakpointsSidebarPane.js", | 66 "DOMBreakpointsSidebarPane.js", |
| 61 "DOMPresentationUtils.js", | 67 "DOMPresentationUtils.js", |
| 62 "DockController.js", | 68 "DockController.js", |
| 63 "ExecutionContextSelector.js", | 69 "ExecutionContextSelector.js", |
| 64 "ExecutionContextModel.js", | 70 "ExecutionContextModel.js", |
| 65 "HandlerRegistry.js", | 71 "HandlerRegistry.js", |
| 66 "Linkifier.js", | 72 "Linkifier.js", |
| 67 "NetworkConditionsSelector.js", | 73 "NetworkConditionsSelector.js", |
| 68 "ObjectPopoverHelper.js", | 74 "ObjectPopoverHelper.js", |
| 69 "ObjectPropertiesSection.js", | 75 "ObjectPropertiesSection.js", |
| 70 "RemoteObjectPreviewFormatter.js", | 76 "RemoteObjectPreviewFormatter.js", |
| 77 "RequestAppBannerActionDelegate.js", |
| 71 "ShortcutsScreen.js", | 78 "ShortcutsScreen.js", |
| 72 "EventListenersUtils.js", | 79 "EventListenersUtils.js", |
| 73 "EventListenersView.js", | 80 "EventListenersView.js", |
| 74 "Reload.js" | 81 "Reload.js" |
| 75 ], | 82 ], |
| 76 "resources": [ | 83 "resources": [ |
| 77 "breakpointsList.css", | 84 "breakpointsList.css", |
| 78 "customPreviewSection.css", | 85 "customPreviewSection.css", |
| 79 "eventListenersView.css", | 86 "eventListenersView.css", |
| 80 "domUtils.css", | 87 "domUtils.css", |
| 81 "networkConditionsSettingsTab.css", | 88 "networkConditionsSettingsTab.css", |
| 82 "objectPropertiesSection.css", | 89 "objectPropertiesSection.css", |
| 83 "objectValue.css" | 90 "objectValue.css" |
| 84 ] | 91 ] |
| 85 } | 92 } |
| OLD | NEW |