# blockenberg/2.0.7/blocks/clipboard-copy/block.json

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

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/clipboard-copy/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/clipboard-copy/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/clipboard-copy/block.json#L10-L20`.

```json
{
    "apiVersion": 3,
    "name": "blockenberg/clipboard-copy",
    "title": "Clipboard Copy",
    "category": "bkbg-dev",
    "description": "Display a copyable code, coupon, or text with a one-click copy button.",
    "keywords": [
        "copy",
        "clipboard",
        "coupon",
        "code"
    ],
    "textdomain": "blockenberg",
    "editorScript": "bkbg-clipboard-copy-editor",
    "editorStyle": "bkbg-clipboard-copy-style",
    "style": "bkbg-clipboard-copy-style",
    "viewScript": "bkbg-clipboard-copy-frontend",
    "supports": {
        "html": false,
        "anchor": true,
        "className": true,
        "align": [
            "wide",
            "full"
        ]
    },
    "attributes": {
        "textToCopy": {
            "type": "string",
            "default": "SAVE20"
        },
        "label": {
            "type": "string",
            "default": "Copy Code"
        },
        "copiedLabel": {
            "type": "string",
            "default": "Copied! ✓"
        },
        "showCode": {
            "type": "boolean",
            "default": true
        },
        "style": {
            "type": "string",
            "default": "card"
        },
        "size": {
            "type": "string",
            "default": "md"
        },
        "iconEnabled": {
            "type": "boolean",
            "default": true
        },
        "description": {
            "type": "string",
            "default": ""
        },
        "alignment": {
            "type": "string",
            "default": "left"
        },
        "bgColor": {
            "type": "string",
            "default": "#f9fafb"
        },
        "borderColor": {
            "type": "string",
            "default": "#e5e7eb"
        },
        "btnBg": {
            "type": "string",
            "default": "#111827"
        },
        "btnColor": {
            "type": "string",
            "default": "#ffffff"
        },
        "btnHoverBg": {
            "type": "string",
            "default": "#374151"
        },
        "codeBg": {
            "type": "string",
            "default": "#f3f4f6"
        },
        "codeColor": {
            "type": "string",
            "default": "#111827"
        },
        "codeFontSize": {
            "type": "number",
            "default": 16
        },
        "fontSize": {
            "type": "number",
            "default": 14
        },
        "fontWeight": {
            "type": "number",
            "default": 600
        },
        "borderRadius": {
            "type": "number",
            "default": 8
        },
        "toastDuration": {
            "type": "number",
            "default": 2000
        },
        "descSize": {
            "type": "number",
            "default": 13
        },
        "typoCode": {
            "type": "object",
            "default": {}
        },
        "typoDesc": {
            "type": "object",
            "default": {}
        }
    }
}

```
