PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / youtube-performance / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/youtube-performance/block.json

134 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/youtube-performance",
5 "title": "YouTube Performance Embed",
6 "category": "bkbg-dev",
7 "icon": "video-alt3",
8 "description": "High-performance YouTube embed with poster + lazy iframe on click.",
9 "keywords": [
10 "youtube",
11 "video",
12 "embed",
13 "lazy",
14 "performance",
15 "poster"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-youtube-performance-editor",
19 "editorStyle": "bkbg-youtube-performance-style",
20 "style": "bkbg-youtube-performance-style",
21 "viewScript": "bkbg-youtube-performance-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "videoUrl": {
33 "type": "string",
34 "default": ""
35 },
36 "videoId": {
37 "type": "string",
38 "default": ""
39 },
40 "privacyMode": {
41 "type": "boolean",
42 "default": true
43 },
44 "startTime": {
45 "type": "number",
46 "default": 0
47 },
48 "controls": {
49 "type": "boolean",
50 "default": true
51 },
52 "rel": {
53 "type": "boolean",
54 "default": false
55 },
56 "mute": {
57 "type": "boolean",
58 "default": false
59 },
60 "loop": {
61 "type": "boolean",
62 "default": false
63 },
64 "posterSource": {
65 "type": "string",
66 "default": "youtube-max"
67 },
68 "posterImage": {
69 "type": "object",
70 "default": {
71 "id": 0,
72 "url": "",
73 "alt": ""
74 }
75 },
76 "showTitle": {
77 "type": "boolean",
78 "default": false
79 },
80 "title": {
81 "type": "string",
82 "default": ""
83 },
84 "aspect": {
85 "type": "string",
86 "default": "4/3"
87 },
88 "minHeight": {
89 "type": "number",
90 "default": 350
91 },
92 "borderRadius": {
93 "type": "number",
94 "default": 12
95 },
96 "shadow": {
97 "type": "boolean",
98 "default": false
99 },
100 "playStyle": {
101 "type": "string",
102 "default": "youtube"
103 },
104 "playSize": {
105 "type": "number",
106 "default": 50
107 },
108 "playBg": {
109 "type": "string",
110 "default": "#01adee"
111 },
112 "playColor": {
113 "type": "string",
114 "default": "#ffffff"
115 },
116 "playHoverScale": {
117 "type": "number",
118 "default": 1.05
119 },
120 "titleFontSize": {
121 "type": "number",
122 "default": 15
123 },
124 "titleFontWeight": {
125 "type": "string",
126 "default": "700"
127 },
128 "titleTypo": {
129 "type": "object",
130 "default": {}
131 }
132 }
133 }
134