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 / open-graph-preview / block.json

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

181 lines 4.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/open-graph-preview",
5 "version": "1.0.0",
6 "title": "Open Graph Preview",
7 "category": "bkbg-dev",
8 "icon": "share",
9 "description": "Preview how your page looks when shared on Twitter/X, Facebook, LinkedIn, and Slack.",
10 "keywords": [
11 "social",
12 "og",
13 "preview",
14 "share",
15 "seo",
16 "twitter",
17 "facebook",
18 "linkedin"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-open-graph-preview-editor",
22 "style": "bkbg-open-graph-preview-style",
23 "viewScript": "bkbg-open-graph-preview-frontend",
24 "attributes": {
25 "platform": {
26 "type": "string",
27 "default": "all"
28 },
29 "pageTitle": {
30 "type": "string",
31 "default": "Your Amazing Blog Post Title That Grabs Attention"
32 },
33 "pageDescription": {
34 "type": "string",
35 "default": "A compelling description of your content that will appear when shared on social media platforms. Keep it under 160 characters for best results."
36 },
37 "pageUrl": {
38 "type": "string",
39 "default": "yoursite.com"
40 },
41 "siteName": {
42 "type": "string",
43 "default": "My Website"
44 },
45 "imageEmoji": {
46 "type": "string",
47 "default": "\ud83d\ude80"
48 },
49 "imageBg": {
50 "type": "string",
51 "default": "#6366f1"
52 },
53 "imageHeight": {
54 "type": "number",
55 "default": 180
56 },
57 "showDescription": {
58 "type": "boolean",
59 "default": true
60 },
61 "showSiteName": {
62 "type": "boolean",
63 "default": true
64 },
65 "layout": {
66 "type": "string",
67 "default": "stacked"
68 },
69 "bgColor": {
70 "type": "string",
71 "default": "#f1f5f9"
72 },
73 "borderRadius": {
74 "type": "number",
75 "default": 16
76 },
77 "fontSize": {
78 "type": "number",
79 "default": 14
80 },
81 "twitterBg": {
82 "type": "string",
83 "default": "#15202b"
84 },
85 "twitterBorder": {
86 "type": "string",
87 "default": "#38444d"
88 },
89 "twitterTitle": {
90 "type": "string",
91 "default": "#ffffff"
92 },
93 "twitterDesc": {
94 "type": "string",
95 "default": "#8b98a5"
96 },
97 "twitterMeta": {
98 "type": "string",
99 "default": "#6b7280"
100 },
101 "facebookBg": {
102 "type": "string",
103 "default": "#ffffff"
104 },
105 "facebookBorder": {
106 "type": "string",
107 "default": "#dddfe2"
108 },
109 "facebookTitle": {
110 "type": "string",
111 "default": "#1c1e21"
112 },
113 "facebookDesc": {
114 "type": "string",
115 "default": "#606770"
116 },
117 "facebookMeta": {
118 "type": "string",
119 "default": "#8a8d91"
120 },
121 "linkedinBg": {
122 "type": "string",
123 "default": "#ffffff"
124 },
125 "linkedinBorder": {
126 "type": "string",
127 "default": "#e0dfde"
128 },
129 "linkedinTitle": {
130 "type": "string",
131 "default": "#000000"
132 },
133 "linkedinDesc": {
134 "type": "string",
135 "default": "#434649"
136 },
137 "linkedinMeta": {
138 "type": "string",
139 "default": "#0a66c2"
140 },
141 "slackBg": {
142 "type": "string",
143 "default": "#ffffff"
144 },
145 "slackBorder": {
146 "type": "string",
147 "default": "#e8e8e8"
148 },
149 "slackAccent": {
150 "type": "string",
151 "default": "#36c5f0"
152 },
153 "slackTitle": {
154 "type": "string",
155 "default": "#1d1c1d"
156 },
157 "slackDesc": {
158 "type": "string",
159 "default": "#616061"
160 },
161 "slackMeta": {
162 "type": "string",
163 "default": "#868686"
164 },
165 "bodyFontWeight": {
166 "type": "string",
167 "default": "400"
168 },
169 "bodyTypo": {
170 "type": "object",
171 "default": {}
172 }
173 },
174 "supports": {
175 "html": false,
176 "align": [
177 "wide",
178 "full"
179 ]
180 }
181 }