-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharvis-workflow.json
More file actions
29 lines (29 loc) · 953 Bytes
/
arvis-workflow.json
File metadata and controls
29 lines (29 loc) · 953 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"defaultIcon": "icon.png",
"creator": "MinionsDave",
"description": "Arvis workflow to query word abbreviation from abbreviations.com",
"name": "arvis-abbreviation-workflow",
"readme": "https://github.com/arvis-workflows/arvis-abbreviation-workflow",
"version": "0.0.1",
"webAddress": "https://github.com/arvis-workflows/arvis-abbreviation-workflow#readme",
"enabled": true,
"commands": [
{
"type": "scriptFilter",
"title": "query from abbreviations.com",
"command": "ab",
"scriptFilter": "node index.js {query}",
"runningSubtext": "Hold on a sec until script work is done...",
"argType": "optional",
"withspace": true,
"actions": [
{
"type": "clipboard",
"modifiers": "normal",
"text": "{query}"
}
]
}
]
}