-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharvis-workflow.json
42 lines (42 loc) · 1.51 KB
/
arvis-workflow.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
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"creator": "jopemachine",
"name": "arvis-nintendo-switch-price-compare",
"enabled": true,
"description": "Compare Nintendo Switch game prices by country through https://eshop-prices.com/",
"readme": "",
"version": "0.1.0",
"webAddress": "https://github.com/arvis-workflows/arvis-nintendo-switch-price-compare",
"defaultIcon": "icon.png",
"variables": {
"currency": "USD"
},
"commands": [
{
"type": "scriptFilter",
"title": "Nintendo switch prices compare",
"command": "nsp",
"scriptFilter": "node list.js {query}",
"runningSubtext": "Hold on a sec until script work is done...",
"argType": "optional",
"withspace": true,
"actions": [
{
"type": "scriptFilter",
"title": "Prices",
"scriptFilter": "node prices.js {query}",
"runningSubtext": "Hold on a sec until script work is done...",
"argType": "required",
"withspace": false,
"actions": [
{
"type": "clipboard",
"modifiers": "normal",
"text": "{query}"
}
]
}
]
}
]
}