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 22 matching lines...) Expand all Loading... |
33 "title": "Capture screenshot", | 33 "title": "Capture screenshot", |
34 "tags": "device" | 34 "tags": "device" |
35 }, | 35 }, |
36 { | 36 { |
37 "type": "context-menu-item", | 37 "type": "context-menu-item", |
38 "location": "deviceModeMenu/tools", | 38 "location": "deviceModeMenu/tools", |
39 "order": 12, | 39 "order": 12, |
40 "actionId": "emulation.capture-screenshot" | 40 "actionId": "emulation.capture-screenshot" |
41 }, | 41 }, |
42 { | 42 { |
43 "type": "@UI.ActionDelegate", | |
44 "actionId": "emulation.capture-full-height-screenshot", | |
45 "category": "Mobile", | |
46 "className": "Emulation.DeviceModeWrapper.ActionDelegate", | |
47 "title": "Capture full size screenshot", | |
48 "tags": "device" | |
49 }, | |
50 { | |
51 "type": "context-menu-item", | |
52 "location": "deviceModeMenu/tools", | |
53 "order": 13, | |
54 "actionId": "emulation.capture-full-height-screenshot" | |
55 }, | |
56 { | |
57 "type": "@UI.ToolbarItem.Provider", | 43 "type": "@UI.ToolbarItem.Provider", |
58 "actionId": "emulation.toggle-device-mode", | 44 "actionId": "emulation.toggle-device-mode", |
59 "condition": "can_dock", | 45 "condition": "can_dock", |
60 "location": "main-toolbar-left", | 46 "location": "main-toolbar-left", |
61 "order": 1 | 47 "order": 1 |
62 }, | 48 }, |
63 { | 49 { |
64 "type": "setting", | 50 "type": "setting", |
65 "category": "Mobile", | 51 "category": "Mobile", |
66 "settingName": "showMediaQueryInspector", | 52 "settingName": "showMediaQueryInspector", |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 ], | 153 ], |
168 "resources": [ | 154 "resources": [ |
169 "devicesSettingsTab.css", | 155 "devicesSettingsTab.css", |
170 "deviceModeToolbar.css", | 156 "deviceModeToolbar.css", |
171 "deviceModeView.css", | 157 "deviceModeView.css", |
172 "inspectedPagePlaceholder.css", | 158 "inspectedPagePlaceholder.css", |
173 "mediaQueryInspector.css", | 159 "mediaQueryInspector.css", |
174 "sensors.css" | 160 "sensors.css" |
175 ] | 161 ] |
176 } | 162 } |
OLD | NEW |