| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@Common.AppProvider", | 4 "type": "@Common.AppProvider", |
| 5 "condition": "can_dock", | 5 "condition": "can_dock", |
| 6 "className": "Emulation.AdvancedAppProvider", | 6 "className": "Emulation.AdvancedAppProvider", |
| 7 "order": 0 | 7 "order": 0 |
| 8 }, | 8 }, |
| 9 { | 9 { |
| 10 "type": "@UI.ActionDelegate", | 10 "type": "@UI.ActionDelegate", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "actionId": "emulation.capture-screenshot" | 40 "actionId": "emulation.capture-screenshot" |
| 41 }, | 41 }, |
| 42 { | 42 { |
| 43 "type": "@UI.ToolbarItem.Provider", | 43 "type": "@UI.ToolbarItem.Provider", |
| 44 "actionId": "emulation.toggle-device-mode", | 44 "actionId": "emulation.toggle-device-mode", |
| 45 "condition": "can_dock", | 45 "condition": "can_dock", |
| 46 "location": "main-toolbar-left", | 46 "location": "main-toolbar-left", |
| 47 "order": 1 | 47 "order": 1 |
| 48 }, | 48 }, |
| 49 { | 49 { |
| 50 "type": "@UI.ActionDelegate", |
| 51 "actionId": "emulation.capture-full-height-screenshot", |
| 52 "category": "Mobile", |
| 53 "className": "Emulation.DeviceModeWrapper.ActionDelegate", |
| 54 "title": "Capture full size screenshot", |
| 55 "tags": "device" |
| 56 }, |
| 57 { |
| 58 "type": "context-menu-item", |
| 59 "location": "deviceModeMenu/tools", |
| 60 "order": 13, |
| 61 "actionId": "emulation.capture-full-height-screenshot" |
| 62 }, |
| 63 { |
| 50 "type": "setting", | 64 "type": "setting", |
| 51 "category": "Mobile", | 65 "category": "Mobile", |
| 52 "settingName": "showMediaQueryInspector", | 66 "settingName": "showMediaQueryInspector", |
| 53 "settingType": "boolean", | 67 "settingType": "boolean", |
| 54 "defaultValue": false, | 68 "defaultValue": false, |
| 55 "options": [ | 69 "options": [ |
| 56 { | 70 { |
| 57 "value": true, | 71 "value": true, |
| 58 "title": "Show media queries" | 72 "title": "Show media queries" |
| 59 }, | 73 }, |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 ], | 167 ], |
| 154 "resources": [ | 168 "resources": [ |
| 155 "devicesSettingsTab.css", | 169 "devicesSettingsTab.css", |
| 156 "deviceModeToolbar.css", | 170 "deviceModeToolbar.css", |
| 157 "deviceModeView.css", | 171 "deviceModeView.css", |
| 158 "inspectedPagePlaceholder.css", | 172 "inspectedPagePlaceholder.css", |
| 159 "mediaQueryInspector.css", | 173 "mediaQueryInspector.css", |
| 160 "sensors.css" | 174 "sensors.css" |
| 161 ] | 175 ] |
| 162 } | 176 } |
| OLD | NEW |