OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "drawer-view", | 4 "type": "drawer-view", |
5 "name": "emulation", | 5 "name": "emulation", |
6 "title": "Emulation", | 6 "title": "Emulation", |
7 "experiment": "!deviceMode", | 7 "experiment": "!deviceMode", |
8 "order": 10, | 8 "order": 10, |
9 "persistence": "closeable", | 9 "persistence": "closeable", |
10 "className": "WebInspector.OverridesView" | 10 "className": "WebInspector.OverridesView" |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 "order": 100, | 90 "order": 100, |
91 "actionId": "emulation.show-sensors" | 91 "actionId": "emulation.show-sensors" |
92 }, | 92 }, |
93 { | 93 { |
94 "type": "drawer-view", | 94 "type": "drawer-view", |
95 "name": "sensors", | 95 "name": "sensors", |
96 "title": "Sensors", | 96 "title": "Sensors", |
97 "persistence": "closeable", | 97 "persistence": "closeable", |
98 "order": 100, | 98 "order": 100, |
99 "className": "WebInspector.SensorsView" | 99 "className": "WebInspector.SensorsView" |
| 100 }, |
| 101 { |
| 102 "type": "@WebInspector.ActionDelegate", |
| 103 "actionId": "emulation.request-app-banner", |
| 104 "className": "WebInspector.DeviceModeView.ActionDelegate", |
| 105 "title": "Request app banner" |
| 106 }, |
| 107 { |
| 108 "type": "context-menu-item", |
| 109 "location": "deviceModeMenu/tools", |
| 110 "order": 10, |
| 111 "actionId": "emulation.request-app-banner" |
100 } | 112 } |
101 ], | 113 ], |
102 "dependencies": [ | 114 "dependencies": [ |
103 "bindings", | 115 "bindings", |
104 "components", | 116 "components", |
105 "platform", | 117 "platform", |
106 "ui" | 118 "ui" |
107 ], | 119 ], |
108 "scripts": [ | 120 "scripts": [ |
109 "OverridesSupport.js", | 121 "OverridesSupport.js", |
(...skipping 12 matching lines...) Expand all Loading... |
122 "resources": [ | 134 "resources": [ |
123 "devicesSettingsTab.css", | 135 "devicesSettingsTab.css", |
124 "deviceModeToolbar.css", | 136 "deviceModeToolbar.css", |
125 "deviceModeView.css", | 137 "deviceModeView.css", |
126 "mediaQueryInspector.css", | 138 "mediaQueryInspector.css", |
127 "responsiveDesignView.css", | 139 "responsiveDesignView.css", |
128 "overrides.css", | 140 "overrides.css", |
129 "sensors.css" | 141 "sensors.css" |
130 ] | 142 ] |
131 } | 143 } |
OLD | NEW |