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 / url-encoder / block.json

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

194 lines 4.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/url-encoder",
5 "version": "1.0.0",
6 "title": "URL Encoder / Decoder",
7 "category": "bkbg-dev",
8 "icon": "admin-links",
9 "description": "Encode and decode URLs or convert text to and from Base64, with a clean multi-tab interface.",
10 "keywords": [
11 "url",
12 "encode",
13 "decode",
14 "base64",
15 "percent",
16 "uri"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-url-encoder-editor",
20 "style": "bkbg-url-encoder-style",
21 "viewScript": "bkbg-url-encoder-frontend",
22 "attributes": {
23 "title": {
24 "type": "string",
25 "default": "URL Encoder / Decoder"
26 },
27 "subtitle": {
28 "type": "string",
29 "default": "Encode, decode URLs and convert Base64"
30 },
31 "showTitle": {
32 "type": "boolean",
33 "default": true
34 },
35 "showSubtitle": {
36 "type": "boolean",
37 "default": true
38 },
39 "defaultMode": {
40 "type": "string",
41 "default": "encode"
42 },
43 "defaultText": {
44 "type": "string",
45 "default": "https://example.com/search?q=hello world&lang=en#results"
46 },
47 "showBase64Tab": {
48 "type": "boolean",
49 "default": true
50 },
51 "showCopyButton": {
52 "type": "boolean",
53 "default": true
54 },
55 "showClearButton": {
56 "type": "boolean",
57 "default": true
58 },
59 "showCharCount": {
60 "type": "boolean",
61 "default": true
62 },
63 "showDiffHighlight": {
64 "type": "boolean",
65 "default": true
66 },
67 "accentColor": {
68 "type": "string",
69 "default": "#6c3fb5"
70 },
71 "cardBg": {
72 "type": "string",
73 "default": "#ffffff"
74 },
75 "tabActiveBg": {
76 "type": "string",
77 "default": "#6c3fb5"
78 },
79 "tabActiveColor": {
80 "type": "string",
81 "default": "#ffffff"
82 },
83 "tabInactiveBg": {
84 "type": "string",
85 "default": "#f3f4f6"
86 },
87 "tabInactiveColor": {
88 "type": "string",
89 "default": "#6b7280"
90 },
91 "inputBg": {
92 "type": "string",
93 "default": "#f9fafb"
94 },
95 "inputBorder": {
96 "type": "string",
97 "default": "#e5e7eb"
98 },
99 "inputColor": {
100 "type": "string",
101 "default": "#1f2937"
102 },
103 "outputBg": {
104 "type": "string",
105 "default": "#f3f4f6"
106 },
107 "outputBorder": {
108 "type": "string",
109 "default": "#e5e7eb"
110 },
111 "outputColor": {
112 "type": "string",
113 "default": "#1f2937"
114 },
115 "errorColor": {
116 "type": "string",
117 "default": "#ef4444"
118 },
119 "errorBg": {
120 "type": "string",
121 "default": "#fef2f2"
122 },
123 "btnBg": {
124 "type": "string",
125 "default": "#6c3fb5"
126 },
127 "btnColor": {
128 "type": "string",
129 "default": "#ffffff"
130 },
131 "labelColor": {
132 "type": "string",
133 "default": "#374151"
134 },
135 "titleColor": {
136 "type": "string",
137 "default": ""
138 },
139 "subtitleColor": {
140 "type": "string",
141 "default": ""
142 },
143 "sectionBg": {
144 "type": "string",
145 "default": ""
146 },
147 "titleTypo": {
148 "type": "object",
149 "default": {}
150 },
151 "subtitleTypo": {
152 "type": "object",
153 "default": {}
154 },
155 "textareaRows": {
156 "type": "number",
157 "default": 5
158 },
159 "cardRadius": {
160 "type": "number",
161 "default": 16
162 },
163 "inputRadius": {
164 "type": "number",
165 "default": 10
166 },
167 "tabRadius": {
168 "type": "number",
169 "default": 8
170 },
171 "maxWidth": {
172 "type": "number",
173 "default": 680
174 },
175 "paddingTop": {
176 "type": "number",
177 "default": 60
178 },
179 "paddingBottom": {
180 "type": "number",
181 "default": 60
182 }
183 },
184 "supports": {
185 "html": false,
186 "anchor": true,
187 "className": true,
188 "align": [
189 "wide",
190 "full"
191 ]
192 }
193 }
194