-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
102 lines (98 loc) · 4.25 KB
/
extension.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
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
{
"identifier": "EXPW.Tools",
"name": "Tools",
"organization": "ExponentialWorks",
"description": "Adds a sidebar that lets you create and access quick scripts to automate tasks with ease!",
"version": "1.2.4",
"repository": "https://github.com/ctkjose/Tools-Nova-Extension",
"bugs":"https://github.com/ctkjose/Tools-Nova-Extension/issues",
"categories": ["sidebars"],
"main": "main.js",
"entitlements": {
"clipboard": true, "filesystem": "readwrite", "process": true, "requests": true
},
"sidebars": [
{
"id": "expw_prj",
"name": "Tools",
"smallImage": "folder-small",
"smallSelectedImage": "folder-small",
"largeImage": "folder",
"largeSelectedImage": "folder",
"sections": [
{
"id": "expw_prj",
"name": "Tools",
"allowMultiple": false,
"placeholderText": "No profiles have been created.",
"placeholderImage": "mysidebar-placeholder",
"headerCommands": [
{
"title": "Add",
"image": "__builtin.add",
"tooltip": "Add a new...",
"command": "expw_prj.add",
"when": "(viewItem == 'fld_tools') || (viewItem == 'fld_projects') || (viewItem == 'fld_act_project') || (viewItem == 'fsd')"
},
{
"title": "Reload",
"image": "__builtin.refresh",
"tooltip": "Reload tools...",
"command": "expw_prj.reload"
},
{
"title": "Edit",
"image": "pencil",
"tooltip": "Edit tool...",
"command": "expw_prj.edit",
"when": "(viewItem == 'tool') || (viewItem == 'fs')"
}
],
"contextCommands": [
{
"title": "Refresh Symbols",
"command": "expw_prj.refreshmarkers",
"when": "(viewItem == 'fld_markers')"
},
{
"title": "Edit",
"command": "expw_prj.edit",
"when": "(viewItem == 'tool') || (viewItem == 'fs')"
},
{
"title": "Show in Finder",
"command": "expw_prj.showInFinder",
"when": "(viewItem == 'tool') || (viewItem == 'fs') || (viewItem == 'fsd')"
},
{
"title": "Copy Path",
"command": "expw_prj.copyPath",
"when": "(viewItem == 'tool') || (viewItem == 'fs') || (viewItem == 'fsd')"
},
{
"title": "New File",
"command": "expw_prj.newFile",
"when": "(viewItem == 'fsd')"
},
{"separator": true},
{
"title": "New project...",
"command": "expw_prj.newProject",
"when": "(viewItem == 'fld_projects')"
},
{
"title": "Open project...",
"command": "expw_prj.openProject",
"when": "(viewItem == 'fld_projects')"
},
{
"title": "Add path to project...",
"command": "expw_prj.addPathToProject",
"when": "(viewItem == 'fld_act_project')"
}
]
}
]
}
]
}