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 / readability-score / block.json

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

150 lines 3.7 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/readability-score",
5 "version": "1.0.0",
6 "title": "Readability Score",
7 "category": "bkbg-dev",
8 "icon": "text-page",
9 "description": "Analyze text readability with Flesch-Kincaid, Gunning Fog, and more.",
10 "keywords": [
11 "readability",
12 "flesch",
13 "kincaid",
14 "text",
15 "analyzer",
16 "score"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-readability-score-editor",
20 "style": "bkbg-readability-score-style",
21 "viewScript": "bkbg-readability-score-frontend",
22 "attributes": {
23 "title": {
24 "type": "string",
25 "default": "Readability Analyzer"
26 },
27 "subtitle": {
28 "type": "string",
29 "default": "Paste your text to get a readability score instantly"
30 },
31 "showTitle": {
32 "type": "boolean",
33 "default": true
34 },
35 "showSubtitle": {
36 "type": "boolean",
37 "default": true
38 },
39 "placeholder": {
40 "type": "string",
41 "default": "Paste or type your text here..."
42 },
43 "showFleschEase": {
44 "type": "boolean",
45 "default": true
46 },
47 "showGradeLevel": {
48 "type": "boolean",
49 "default": true
50 },
51 "showGunningFog": {
52 "type": "boolean",
53 "default": true
54 },
55 "showStats": {
56 "type": "boolean",
57 "default": true
58 },
59 "showGauge": {
60 "type": "boolean",
61 "default": true
62 },
63 "showReadingTime": {
64 "type": "boolean",
65 "default": true
66 },
67 "accentColor": {
68 "type": "string",
69 "default": "#6c3fb5"
70 },
71 "cardBg": {
72 "type": "string",
73 "default": ""
74 },
75 "textareaBg": {
76 "type": "string",
77 "default": "#f9fafb"
78 },
79 "textareaBorder": {
80 "type": "string",
81 "default": "#e5e7eb"
82 },
83 "statBg": {
84 "type": "string",
85 "default": "#f3f4f6"
86 },
87 "statBorder": {
88 "type": "string",
89 "default": "#e5e7eb"
90 },
91 "statValueColor": {
92 "type": "string",
93 "default": "#111827"
94 },
95 "statLabelColor": {
96 "type": "string",
97 "default": "#6b7280"
98 },
99 "gaugeTrackColor": {
100 "type": "string",
101 "default": "#e5e7eb"
102 },
103 "scoreBg": {
104 "type": "string",
105 "default": "#f9fafb"
106 },
107 "labelColor": {
108 "type": "string",
109 "default": "#374151"
110 },
111 "titleColor": {
112 "type": "string",
113 "default": ""
114 },
115 "subtitleColor": {
116 "type": "string",
117 "default": ""
118 },
119 "sectionBg": {
120 "type": "string",
121 "default": ""
122 },
123 "titleTypo": { "type": "object", "default": {} },
124 "subtitleTypo": { "type": "object", "default": {} },
125 "cardRadius": {
126 "type": "number",
127 "default": 16
128 },
129 "maxWidth": {
130 "type": "number",
131 "default": 620
132 },
133 "paddingTop": {
134 "type": "number",
135 "default": 60
136 },
137 "paddingBottom": {
138 "type": "number",
139 "default": 60
140 }
141 },
142 "supports": {
143 "html": false,
144 "align": [
145 "wide",
146 "full"
147 ]
148 }
149 }
150