forked from caido/starterkit-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 701 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 701 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
30
{
"id": "notebook-plugin",
"name": "Notebook",
"version": "1.2.0",
"description": "Note taking plugin for Caido.",
"author": {
"name": "Ninjeeter",
"email": "ninjeeter@proton.me",
"url": "https://github.com/caido-community/notebook"
},
"plugins": [
{
"kind": "frontend",
"id": "caido-notebook",
"name": "Notebook",
"entrypoint": "frontend/script.js",
"style": "frontend/style.css",
"backend": {
"id": "caido-notebook-backend"
}
},
{
"kind": "backend",
"id": "caido-notebook-backend",
"name": "Notebook Backend",
"runtime": "javascript",
"entrypoint": "backend/script.js"
}
]
}