-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.json
50 lines (50 loc) · 1.62 KB
/
plugin.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "Content to PDF Converter",
"description": "A Publii plugin that adds a floating button to posts, allowing users to convert the post content into a downloadable PDF file.",
"license": "MIT",
"author": "htejera",
"version": "1.0.0",
"scope": "site",
"minimumPubliiVersion": "0.40.0",
"usePluginSettingsView": false,
"messageInOptions": {
"type": "info",
"text": "Customize the plugin"
},
"config": [
{
"name": "pdfIconPosition",
"label": "Position of the PDF icon",
"note": "Choose whether the PDF download icon should appear on the left or right side of the screen.",
"group": "General Settings",
"value": "right",
"type": "select",
"options": [
{
"label": "Right",
"value": "right"
},
{
"label": "Left",
"value": "left"
}
]
},
{
"name": "closeButtonBackgroundColor",
"label": "Close button background color",
"note": "Specify the background color for the close button.",
"group": "General Settings",
"value": "#000000",
"type": "colorpicker"
},
{
"name": "closeButtonTextColor",
"label": "Close button text color",
"note": "Specify the text color for the close button.",
"group": "General Settings",
"value": "#FFFFFF",
"type": "colorpicker"
}
]
}