-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathplugin.json
More file actions
129 lines (129 loc) · 3.67 KB
/
plugin.json
File metadata and controls
129 lines (129 loc) · 3.67 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"macOS.minVersion": "10.13.0",
"noteplan.minAppVersion": "3.20",
"plugin.releaseStatus": "beta",
"plugin.id": "grdn.TagTracker",
"plugin.name": "📊 Tag Tracker",
"plugin.description": "Track and visualize tag values over time with interactive charts. Monitor @sleep, @sleep_deep, @rps, @alcohol, and @bedtime across your daily notes. Toggle between line and bar chart views.",
"plugin.author": "grdn",
"plugin.version": "1.1.0",
"plugin.dependencies": [],
"plugin.requiredFiles": [],
"plugin.script": "script.js",
"plugin.commands": [
{
"name": "showTagTracker",
"description": "Show tag frequency tracker with line graph visualization",
"jsFunction": "showTagTracker"
}
],
"plugin.settings": [
{
"type": "heading",
"title": "Chart Color Settings"
},
{
"key": "customColor1",
"title": "Color 1 (Hex Code)",
"description": "First chart color (default: #0a84ff - blue)",
"type": "string",
"default": "#0a84ff",
"required": false
},
{
"key": "customColor2",
"title": "Color 2 (Hex Code)",
"description": "Second chart color (default: #bf5af2 - purple)",
"type": "string",
"default": "#bf5af2",
"required": false
},
{
"key": "customColor3",
"title": "Color 3 (Hex Code)",
"description": "Third chart color (default: #32d74b - green)",
"type": "string",
"default": "#32d74b",
"required": false
},
{
"key": "customColor4",
"title": "Color 4 (Hex Code)",
"description": "Fourth chart color (default: #ff453a - red)",
"type": "string",
"default": "#ff453a",
"required": false
},
{
"key": "customColor5",
"title": "Color 5 (Hex Code)",
"description": "Fifth chart color (default: #ffd60a - yellow)",
"type": "string",
"default": "#ffd60a",
"required": false
},
{
"key": "customColor6",
"title": "Color 6 (Hex Code)",
"description": "Sixth chart color (default: #ff9f0a - orange)",
"type": "string",
"default": "#ff9f0a",
"required": false
},
{
"key": "customColor7",
"title": "Color 7 (Hex Code)",
"description": "Seventh chart color (default: #64d2ff - cyan)",
"type": "string",
"default": "#64d2ff",
"required": false
},
{
"key": "customColor8",
"title": "Color 8 (Hex Code)",
"description": "Eighth chart color (default: #ff375f - pink)",
"type": "string",
"default": "#ff375f",
"required": false
},
{
"key": "customColor9",
"title": "Color 9 (Hex Code)",
"description": "Ninth chart color (default: #30d158 - mint)",
"type": "string",
"default": "#30d158",
"required": false
},
{
"key": "customColor10",
"title": "Color 10",
"description": "Tenth chart color (default: #ac8e68 - brown)",
"type": "string",
"default": "#ac8e68",
"required": false
},
{
"key": "customColor11",
"title": "Color 11",
"description": "Eleventh chart color (default: #5856d6 - indigo)",
"type": "string",
"default": "#5856d6",
"required": false
},
{
"key": "customColor12",
"title": "Color 12",
"description": "Twelfth chart color (default: #ff2d55 - rose)",
"type": "string",
"default": "#ff2d55",
"required": false
},
{
"type": "separator"
},
{
"type": "heading",
"title": "Color Format Instructions\nSupported: Hex (#F00, #FF0000), Named (red, blue), RGB (rgb(255,0,0)), HSL (hsl(0,100%,50%)).\nColors cycle if you have 12+ habits."
}
]
}