-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathplugin.json
More file actions
83 lines (83 loc) · 2.49 KB
/
plugin.json
File metadata and controls
83 lines (83 loc) · 2.49 KB
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
{
"COMMENT": "Details on these fields: https://help.noteplan.co/article/67-create-command-bar-plugins",
"macOS.minVersion": "10.13.0",
"noteplan.minAppVersion": "3.4.0",
"plugin.id": "KimMachineGun.Raindrop",
"plugin.name": "🧩 Raindrop.io",
"plugin.version": "0.1.0",
"plugin.lastUpdateInfo": "Initial Release",
"plugin.description": "Raindrop.io integration plugin.",
"plugin.author": "KimMachineGun",
"plugin.dependencies": [],
"plugin.script": "script.js",
"plugin.url": "https://github.com/NotePlan/plugins/blob/main/KimMachineGun.Raindrop/README.md",
"plugin.changelog": "https://github.com/NotePlan/plugins/blob/main/KimMachineGun.Raindrop/CHANGELOG.md",
"plugin.commands": [
{
"name": "rd",
"description": "Search and create note.",
"jsFunction": "searchAndCreateNote",
"alias": [
"rd"
]
},
{
"name": "rd:insert",
"description": "Search and insert (or copy) link.",
"jsFunction": "searchAndInsertOrCopy",
"alias": [
"rdi"
]
}
],
"plugin.settings": [
{
"COMMENT": "Plugin settings documentation: https://help.noteplan.co/article/123-plugin-configuration",
"type": "heading",
"title": "Raindrop Settings"
},
{
"title": "Access Token",
"key": "accessToken",
"type": "string",
"description": "Your Raindrop.io test access token"
},
{
"title": "Note Folder",
"key": "noteFolder",
"type": "string",
"description": "Folder to store Raindrop notes",
"default": "/Raindrop.io/Tags"
},
{
"title": "Tag Prefix",
"key": "tagPrefix",
"type": "string",
"description": "Prefix of Raindrop tags",
"default": "rd/"
},
{
"NOTE": "DO NOT CHANGE THE FOLLOWING SETTINGS; ADD YOUR SETTINGS ABOVE ^^^",
"type": "separator"
},
{
"type": "heading",
"title": "Debugging"
},
{
"key": "_logLevel",
"type": "string",
"title": "Log Level",
"choices": [
"DEBUG",
"INFO",
"WARN",
"ERROR",
"none"
],
"description": "Set how much logging output will be displayed when executing Raindrop commands in NotePlan Plugin Console Logs (NotePlan -> Help -> Plugin Console)\n\n - DEBUG: Show All Logs\n - INFO: Only Show Info, Warnings, and Errors\n - WARN: Only Show Errors or Warnings\n - ERROR: Only Show Errors\n - none: Don't show any logs",
"default": "INFO",
"required": true
}
]
}