-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
72 lines (69 loc) · 3.21 KB
/
plugin.json
File metadata and controls
72 lines (69 loc) · 3.21 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
{
"$schema": "https://raw.githubusercontent.com/yoki-run/yoki/main/plugin.schema.json",
"name": "Extended Math",
"keyword": "math",
"icon": "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 142.514 142.514'><g fill='#7C4DFF'><path d='M34.367 142.514c11.645 0 17.827-10.4 19.645-16.544.029-.097.056-.196.081-.297 4.236-17.545 10.984-45.353 15.983-65.58h17.886c3.363 0 6.09-2.726 6.09-6.09 0-3.364-2.727-6.09-6.09-6.09H73.103c1.6-6.373 2.771-10.912 3.232-12.461l.512-1.734c1.888-6.443 6.309-21.535 13.146-21.535 6.34 0 7.285 9.764 7.328 10.236.27 3.343 3.186 5.868 6.537 5.579 3.354-.256 5.864-3.187 5.605-6.539C108.894 14.036 104.087 0 89.991 0 74.03 0 68.038 20.458 65.159 30.292l-.49 1.659c-.585 1.946-2.12 7.942-4.122 15.962H39.239c-3.364 0-6.09 2.726-6.09 6.09 0 3.364 2.726 6.09 6.09 6.09H57.53c-6.253 25.362-14.334 58.815-15.223 62.498-.332.965-2.829 7.742-7.937 7.742-7.8 0-11.177-10.948-11.204-11.03-.936-3.229-4.305-5.098-7.544-4.156-3.23.937-5.092 4.314-4.156 7.545 2.131 7.361 9.35 19.822 22.901 19.822z'/><path d='M124.685 126.809c3.589 0 6.605-2.549 6.605-6.607 0-1.885-.754-3.586-2.359-5.474l-12.646-14.534 12.271-14.346c1.132-1.416 1.98-2.926 1.98-4.908 0-3.59-2.927-6.231-6.703-6.231-2.547 0-4.527 1.604-6.229 3.684l-9.531 12.454L98.73 78.391c-1.89-2.357-3.869-3.682-6.7-3.682-3.59 0-6.607 2.551-6.607 6.609 0 1.885.756 3.586 2.357 5.471l11.799 13.592-12.932 15.289c-1.227 1.416-1.98 2.926-1.98 4.908 0 3.589 2.926 6.229 6.699 6.229 2.549 0 4.53-1.604 6.229-3.682l10.19-13.4 10.193 13.4c1.894 2.363 3.876 3.684 6.707 3.684z'/></g></svg>",
"description": "Advanced calculator — trig, integrals, derivatives, plots, constants",
"version": "1.1.4",
"author": "Yoki",
"homepage": "https://yoki.run",
"license": "MIT",
"categories": ["productivity", "tools"],
"yoki_min": "1.0.4.0",
"protocol": "v2",
"permissions": {},
"commands": [
{
"name": "calc",
"title": "Calculate",
"description": "Evaluate a math expression",
"mode": "detail",
"exec": "calc.js",
"takes_query": true
},
{
"name": "trig",
"title": "Trigonometry",
"description": "Trig functions with degree/radian support",
"mode": "detail",
"exec": "trig.js",
"keywords": ["trig", "t"],
"takes_query": true
},
{
"name": "integrate",
"title": "Integrate",
"description": "Numerical integration (Simpson's rule)",
"mode": "detail",
"exec": "integrate.js",
"keywords": ["integrate", "int", "i"],
"takes_query": true
},
{
"name": "derive",
"title": "Derivative",
"description": "Symbolic differentiation",
"mode": "detail",
"exec": "derive.js",
"keywords": ["derive", "derivative", "der", "d"],
"takes_query": true
},
{
"name": "plot",
"title": "Plot",
"description": "ASCII graph of a function",
"mode": "detail",
"exec": "plot.js",
"keywords": ["plot", "graph", "p"],
"takes_query": true
},
{
"name": "constants",
"title": "Constants & Formulas",
"description": "Reference of mathematical constants",
"mode": "list",
"exec": "constants.js",
"keywords": ["const", "constants", "ref", "c"]
}
]
}