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 / tool-card / block.json

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

174 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/tool-card",
5 "title": "Tool Card",
6 "description": "Recommended software or SaaS tool card for review and affiliate articles. Distinct from the ecommerce product card — designed for digital tools, apps, and services.",
7 "category": "bkbg-blog",
8 "icon": "admin-plugins",
9 "keywords": [
10 "tool",
11 "software",
12 "saas",
13 "review",
14 "affiliate",
15 "app",
16 "recommendation"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-tool-card-editor",
20 "style": "bkbg-tool-card-style",
21 "viewScript": "bkbg-tool-card-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "toolName": {
31 "type": "string",
32 "default": "Notion"
33 },
34 "tagline": {
35 "type": "string",
36 "default": "All-in-one workspace for notes, wikis, and projects"
37 },
38 "logoUrl": {
39 "type": "string",
40 "default": ""
41 },
42 "logoId": {
43 "type": "number",
44 "default": 0
45 },
46 "logoAlt": {
47 "type": "string",
48 "default": ""
49 },
50 "rating": {
51 "type": "number",
52 "default": 4.5
53 },
54 "ratingCount": {
55 "type": "string",
56 "default": "2,300+ reviews"
57 },
58 "showRating": {
59 "type": "boolean",
60 "default": true
61 },
62 "pricing": {
63 "type": "string",
64 "default": "freemium"
65 },
66 "pricingNote": {
67 "type": "string",
68 "default": "Free plan available · Paid from $8/mo"
69 },
70 "showPricing": {
71 "type": "boolean",
72 "default": true
73 },
74 "description": {
75 "type": "string",
76 "default": "Notion is a flexible all-in-one workspace that replaces your notes, wikis, tasks, and databases. Perfect for individuals and teams who want everything in one place."
77 },
78 "features": {
79 "type": "array",
80 "default": [
81 "Unlimited pages and blocks",
82 "Real-time collaboration",
83 "Database views (table, board, gallery)",
84 "API and 500+ integrations",
85 "Available on web, desktop, and mobile"
86 ]
87 },
88 "ctaLabel": {
89 "type": "string",
90 "default": "Try Notion Free"
91 },
92 "ctaUrl": {
93 "type": "string",
94 "default": "#"
95 },
96 "badgeText": {
97 "type": "string",
98 "default": "Editor's Pick"
99 },
100 "showBadge": {
101 "type": "boolean",
102 "default": true
103 },
104 "layout": {
105 "type": "string",
106 "default": "horizontal"
107 },
108 "borderRadius": {
109 "type": "number",
110 "default": 12
111 },
112 "bgColor": {
113 "type": "string",
114 "default": "#ffffff"
115 },
116 "borderColor": {
117 "type": "string",
118 "default": "#e2e8f0"
119 },
120 "accentColor": {
121 "type": "string",
122 "default": "#6366f1"
123 },
124 "nameColor": {
125 "type": "string",
126 "default": "#111827"
127 },
128 "taglineColor": {
129 "type": "string",
130 "default": "#6b7280"
131 },
132 "descColor": {
133 "type": "string",
134 "default": "#374151"
135 },
136 "featureColor": {
137 "type": "string",
138 "default": "#374151"
139 },
140 "starColor": {
141 "type": "string",
142 "default": "#f59e0b"
143 },
144 "pricingColor": {
145 "type": "string",
146 "default": "#374151"
147 },
148 "badgeBg": {
149 "type": "string",
150 "default": "#fef3c7"
151 },
152 "badgeColor": {
153 "type": "string",
154 "default": "#92400e"
155 },
156 "ctaBg": {
157 "type": "string",
158 "default": "#6366f1"
159 },
160 "ctaColor": {
161 "type": "string",
162 "default": "#ffffff"
163 },
164 "nameTypo": {
165 "type": "object",
166 "default": {}
167 },
168 "bodyTypo": {
169 "type": "object",
170 "default": {}
171 }
172 }
173 }
174