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