# blockenberg/2.0.7/blocks/text-analyzer/block.json

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 131 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/text-analyzer/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/text-analyzer/block.json
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/text-analyzer/block.json#L10-L20`.

```json
{
    "apiVersion": 3,
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "name": "blockenberg/text-analyzer",
    "title": "Text Analyzer",
    "category": "bkbg-dev",
    "icon": "editor-paste-text",
    "description": "Comprehensive text analysis tool: word/character/sentence counts, vocabulary richness, top word frequency chart, average lengths, and more. Live updates as you type.",
    "keywords": [
        "text",
        "analyzer",
        "analysis",
        "words",
        "frequency",
        "statistics",
        "writing",
        "NLP"
    ],
    "textdomain": "blockenberg",
    "editorScript": "bkbg-text-analyzer-editor",
    "style": "bkbg-text-analyzer-style",
    "viewScript": "bkbg-text-analyzer-frontend",
    "supports": {
        "html": false,
        "anchor": true,
        "className": true,
        "align": [
            "wide",
            "full"
        ]
    },
    "attributes": {
        "title": {
            "type": "string",
            "default": "Text Analyzer"
        },
        "subtitle": {
            "type": "string",
            "default": "Paste or type any text to get instant insights"
        },
        "showTitle": {
            "type": "boolean",
            "default": true
        },
        "showSubtitle": {
            "type": "boolean",
            "default": true
        },
        "showBasicStats": {
            "type": "boolean",
            "default": true
        },
        "showVocabStats": {
            "type": "boolean",
            "default": true
        },
        "showFrequency": {
            "type": "boolean",
            "default": true
        },
        "showLongestWord": {
            "type": "boolean",
            "default": true
        },
        "freqTopN": {
            "type": "number",
            "default": 8
        },
        "defaultText": {
            "type": "string",
            "default": ""
        },
        "placeholder": {
            "type": "string",
            "default": "Paste your text here and watch the analysis update in real time…"
        },
        "accentColor": {
            "type": "string",
            "default": "#8b5cf6"
        },
        "barColor": {
            "type": "string",
            "default": "#8b5cf6"
        },
        "statBg": {
            "type": "string",
            "default": "#f5f3ff"
        },
        "statNumColor": {
            "type": "string",
            "default": "#6d28d9"
        },
        "sectionBg": {
            "type": "string",
            "default": "#faf5ff"
        },
        "cardBg": {
            "type": "string",
            "default": "#ffffff"
        },
        "inputBg": {
            "type": "string",
            "default": "#f8fafc"
        },
        "titleColor": {
            "type": "string",
            "default": "#111827"
        },
        "subtitleColor": {
            "type": "string",
            "default": "#6b7280"
        },
        "labelColor": {
            "type": "string",
            "default": "#374151"
        },
        "titleTypo": {
            "type": "object",
            "default": {}
        },
        "subtitleTypo": {
            "type": "object",
            "default": {}
        },
        "contentMaxWidth": {
            "type": "number",
            "default": 760
        }
    }
}

```
