| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"name": "blockenberg/device-mockup", |
| 4 |
"title": "Device Mockup", |
| 5 |
"description": "Display a screenshot or image inside a realistic device frame — phone, tablet, laptop, or browser window.", |
| 6 |
"category": "bkbg-media", |
| 7 |
"icon": "tablet", |
| 8 |
"textdomain": "blockenberg", |
| 9 |
"keywords": [ |
| 10 |
"device", |
| 11 |
"mockup", |
| 12 |
"phone", |
| 13 |
"laptop", |
| 14 |
"tablet", |
| 15 |
"browser", |
| 16 |
"screenshot", |
| 17 |
"preview" |
| 18 |
], |
| 19 |
"supports": { |
| 20 |
"html": false, |
| 21 |
"align": [ |
| 22 |
"left", |
| 23 |
"center", |
| 24 |
"right", |
| 25 |
"wide", |
| 26 |
"full" |
| 27 |
] |
| 28 |
}, |
| 29 |
"attributes": { |
| 30 |
"deviceType": { |
| 31 |
"type": "string", |
| 32 |
"default": "phone" |
| 33 |
}, |
| 34 |
"frameColor": { |
| 35 |
"type": "string", |
| 36 |
"default": "silver" |
| 37 |
}, |
| 38 |
"frameColorCustom": { |
| 39 |
"type": "string", |
| 40 |
"default": "#d1d5db" |
| 41 |
}, |
| 42 |
"imageUrl": { |
| 43 |
"type": "string", |
| 44 |
"default": "" |
| 45 |
}, |
| 46 |
"imageId": { |
| 47 |
"type": "number", |
| 48 |
"default": 0 |
| 49 |
}, |
| 50 |
"imageAlt": { |
| 51 |
"type": "string", |
| 52 |
"default": "" |
| 53 |
}, |
| 54 |
"maxWidth": { |
| 55 |
"type": "number", |
| 56 |
"default": 380 |
| 57 |
}, |
| 58 |
"scale": { |
| 59 |
"type": "number", |
| 60 |
"default": 100 |
| 61 |
}, |
| 62 |
"tiltX": { |
| 63 |
"type": "number", |
| 64 |
"default": 0 |
| 65 |
}, |
| 66 |
"tiltY": { |
| 67 |
"type": "number", |
| 68 |
"default": 0 |
| 69 |
}, |
| 70 |
"shadow": { |
| 71 |
"type": "boolean", |
| 72 |
"default": true |
| 73 |
}, |
| 74 |
"shadowIntensity": { |
| 75 |
"type": "number", |
| 76 |
"default": 30 |
| 77 |
}, |
| 78 |
"showReflection": { |
| 79 |
"type": "boolean", |
| 80 |
"default": false |
| 81 |
}, |
| 82 |
"showBrowserChrome": { |
| 83 |
"type": "boolean", |
| 84 |
"default": true |
| 85 |
}, |
| 86 |
"browserUrl": { |
| 87 |
"type": "string", |
| 88 |
"default": "https://example.com" |
| 89 |
}, |
| 90 |
"showNotch": { |
| 91 |
"type": "boolean", |
| 92 |
"default": true |
| 93 |
}, |
| 94 |
"showHomeIndicator": { |
| 95 |
"type": "boolean", |
| 96 |
"default": true |
| 97 |
}, |
| 98 |
"showKeyboard": { |
| 99 |
"type": "boolean", |
| 100 |
"default": false |
| 101 |
}, |
| 102 |
"frameStroke": { |
| 103 |
"type": "number", |
| 104 |
"default": 12 |
| 105 |
}, |
| 106 |
"screenRadius": { |
| 107 |
"type": "number", |
| 108 |
"default": 8 |
| 109 |
}, |
| 110 |
"outerRadius": { |
| 111 |
"type": "number", |
| 112 |
"default": 40 |
| 113 |
}, |
| 114 |
"backgroundColor": { |
| 115 |
"type": "string", |
| 116 |
"default": "" |
| 117 |
}, |
| 118 |
"hoverLift": { |
| 119 |
"type": "boolean", |
| 120 |
"default": true |
| 121 |
}, |
| 122 |
"animateOnScroll": { |
| 123 |
"type": "boolean", |
| 124 |
"default": false |
| 125 |
}, |
| 126 |
"urlBarFontSize": { |
| 127 |
"type": "number", |
| 128 |
"default": 11 |
| 129 |
} |
| 130 |
}, |
| 131 |
"editorScript": "bkbg-device-mockup-editor", |
| 132 |
"editorStyle": "bkbg-device-mockup-style", |
| 133 |
"style": "bkbg-device-mockup-style", |
| 134 |
"viewScript": "bkbg-device-mockup-frontend" |
| 135 |
} |
| 136 |
|