-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
100 lines (100 loc) · 2.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "Visual Effects Plugin",
"description": "Enhance your website with a variety of visual effects to improve readability and user interaction. This plugin adds a customizable toolbar allowing users to apply effects such as grayscale, invert colors, sepia, and more, directly to your site's pages.",
"license": "MIT",
"author": "htejera",
"version": "1.0.0",
"scope": "site",
"minimumPubliiVersion": "0.40.0",
"usePluginSettingsView": false,
"messageInOptions": {
"type": "info",
"text": "Customize the visual effects toolbar appearance and functionality directly from these settings."
},
"config": [
{
"name": "parentSelector",
"label": "Parent Element Selector",
"note": "CSS selector of the element to append the visual effects toolbar. Default is 'body'.",
"group": "Toolbar Settings",
"value": "body",
"type": "text"
},
{
"name": "comboPosition",
"label": "Combo Box Position",
"note": "Position of the combo box on the screen (right or left).",
"group": "Toolbar Settings",
"value": "right",
"type": "select",
"options": [
{
"label": "Right",
"value": "right"
},
{
"label": "Left",
"value": "left"
}
]
},
{
"name": "language",
"label": "Language",
"note": "Select the language for the plugin interface. Default is English.",
"group": "Toolbar Settings",
"value": "en",
"type": "select",
"options": [
{
"label": "English",
"value": "en"
},
{
"label": "Spanish",
"value": "es"
},
{
"label": "French",
"value": "fr"
},
{
"label": "German",
"value": "de"
},
{
"label": "Italian",
"value": "it"
},
{
"label": "Portuguese",
"value": "pt"
}
]
},
{
"name": "grayscaleValue",
"label": "Grayscale Filter Value",
"note": "The intensity of the grayscale effect (0% to 100%). Default is 100%.",
"group": "Effects Settings",
"value": "100%",
"type": "text"
},
{
"name": "invertValue",
"label": "Invert Filter Value",
"note": "The intensity of the invert effect (0% to 100%). Default is 100%.",
"group": "Effects Settings",
"value": "100%",
"type": "text"
},
{
"name": "sepiaValue",
"label": "Sepia Filter Value",
"note": "The intensity of the sepia effect (0% to 100%). Default is 100%.",
"group": "Effects Settings",
"value": "100%",
"type": "text"
}
]
}