PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.13
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.13
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 / text-analyzer / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.13, at blocks/text-analyzer/block.json

131 lines 3.3 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/text-analyzer",
5 "title": "Text Analyzer",
6 "category": "bkbg-dev",
7 "icon": "editor-paste-text",
8 "description": "Comprehensive text analysis tool: word/character/sentence counts, vocabulary richness, top word frequency chart, average lengths, and more. Live updates as you type.",
9 "keywords": [
10 "text",
11 "analyzer",
12 "analysis",
13 "words",
14 "frequency",
15 "statistics",
16 "writing",
17 "NLP"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-text-analyzer-editor",
21 "style": "bkbg-text-analyzer-style",
22 "viewScript": "bkbg-text-analyzer-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "title": {
34 "type": "string",
35 "default": "Text Analyzer"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Paste or type any text to get instant insights"
40 },
41 "showTitle": {
42 "type": "boolean",
43 "default": true
44 },
45 "showSubtitle": {
46 "type": "boolean",
47 "default": true
48 },
49 "showBasicStats": {
50 "type": "boolean",
51 "default": true
52 },
53 "showVocabStats": {
54 "type": "boolean",
55 "default": true
56 },
57 "showFrequency": {
58 "type": "boolean",
59 "default": true
60 },
61 "showLongestWord": {
62 "type": "boolean",
63 "default": true
64 },
65 "freqTopN": {
66 "type": "number",
67 "default": 8
68 },
69 "defaultText": {
70 "type": "string",
71 "default": ""
72 },
73 "placeholder": {
74 "type": "string",
75 "default": "Paste your text here and watch the analysis update in real time…"
76 },
77 "accentColor": {
78 "type": "string",
79 "default": "#8b5cf6"
80 },
81 "barColor": {
82 "type": "string",
83 "default": "#8b5cf6"
84 },
85 "statBg": {
86 "type": "string",
87 "default": "#f5f3ff"
88 },
89 "statNumColor": {
90 "type": "string",
91 "default": "#6d28d9"
92 },
93 "sectionBg": {
94 "type": "string",
95 "default": "#faf5ff"
96 },
97 "cardBg": {
98 "type": "string",
99 "default": "#ffffff"
100 },
101 "inputBg": {
102 "type": "string",
103 "default": "#f8fafc"
104 },
105 "titleColor": {
106 "type": "string",
107 "default": "#111827"
108 },
109 "subtitleColor": {
110 "type": "string",
111 "default": "#6b7280"
112 },
113 "labelColor": {
114 "type": "string",
115 "default": "#374151"
116 },
117 "titleTypo": {
118 "type": "object",
119 "default": {}
120 },
121 "subtitleTypo": {
122 "type": "object",
123 "default": {}
124 },
125 "contentMaxWidth": {
126 "type": "number",
127 "default": 760
128 }
129 }
130 }
131