-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharvis-workflow.json
34 lines (34 loc) · 1003 Bytes
/
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
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"category": "Productivity",
"creator": "Wei Xia",
"description": "show real time stock price in US market",
"name": "arvis-real-time-stock-price",
"readme": "Get the real-time stock price from US stock market! (Dow Jones, Nasdaq, S&P 500) - stonks stonks stonks",
"version": "0.0.6",
"defaultIcon": "icon.png",
"webAddress": "http://weixia.info/",
"enabled": true,
"variables": {
"token": "pk_1831e90c83fb4d70aa51d62dcb9a02ee"
},
"commands": [
{
"type": "scriptFilter",
"command": "stock",
"title": "Add A Stock Symbol",
"subtitle": "",
"scriptFilter": "node index.js \"{query}\"",
"runningSubtext": "Checking",
"withspace": true,
"argType": "required",
"actions": [
{
"modifiers": "normal",
"type": "clipboard",
"text": "{query}"
}
]
}
]
}