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 / trivia-game / block.json

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

102 lines 2.5 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/trivia-game",
5 "title": "Trivia Game",
6 "category": "bkbg-interactive",
7 "icon": "editor-help",
8 "description": "A timed multiple-choice trivia game with built-in questions across Science, History, Geography, and Pop Culture categories.",
9 "keywords": [
10 "trivia",
11 "quiz",
12 "game",
13 "questions",
14 "knowledge",
15 "multiple choice",
16 "fun"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-trivia-game-editor",
20 "style": "bkbg-trivia-game-style",
21 "viewScript": "bkbg-trivia-game-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "Trivia Challenge"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "Test your knowledge!"
39 },
40 "titleTypo": {
41 "type": "object",
42 "default": {}
43 },
44 "subtitleTypo": {
45 "type": "object",
46 "default": {}
47 },
48 "questionsPerRound": {
49 "type": "number",
50 "default": 10
51 },
52 "timePerQuestion": {
53 "type": "number",
54 "default": 20
55 },
56 "category": {
57 "type": "string",
58 "default": "mixed"
59 },
60 "difficulty": {
61 "type": "string",
62 "default": "mixed"
63 },
64 "showTimer": {
65 "type": "boolean",
66 "default": true
67 },
68 "showProgress": {
69 "type": "boolean",
70 "default": true
71 },
72 "showExplanation": {
73 "type": "boolean",
74 "default": true
75 },
76 "accentColor": {
77 "type": "string",
78 "default": "#6366f1"
79 },
80 "correctColor": {
81 "type": "string",
82 "default": "#22c55e"
83 },
84 "wrongColor": {
85 "type": "string",
86 "default": "#ef4444"
87 },
88 "cardBg": {
89 "type": "string",
90 "default": "#ffffff"
91 },
92 "sectionBg": {
93 "type": "string",
94 "default": "#f0f4ff"
95 },
96 "titleColor": {
97 "type": "string",
98 "default": "#1e1b4b"
99 }
100 }
101 }
102