-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
37 lines (37 loc) · 1.07 KB
/
Copy pathplugin.json
File metadata and controls
37 lines (37 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "Copy Code Button",
"description": "Adds a copy-to-clipboard button to all code blocks in posts and pages.",
"license": "GPL-3.0",
"author": "InPoint Automation",
"version": "1.0.0",
"scope": "site",
"minimumPubliiVersion": "0.43.0",
"config": [
{
"name": "copiedText",
"label": "Copied confirmation text",
"group": "Display",
"type": "text",
"value": "Copied!"
},
{
"name": "copiedDuration",
"label": "Confirmation display duration (ms)",
"group": "Display",
"type": "number",
"value": 2000
},
{
"name": "applyTo",
"label": "Apply to",
"group": "Advanced",
"type": "radio",
"options": [
{ "label": "Posts and pages", "value": "both" },
{ "label": "Posts only", "value": "post" },
{ "label": "Pages only", "value": "page" }
],
"value": "both"
}
]
}