-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
80 lines (80 loc) · 2.06 KB
/
manifest.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
[
{
"title": "Bulk labeling for text spans with keyboard shortcuts",
"description": "Assigns labels to all occurrences of the selected text at once and removes them",
"path": "bulk-labeling",
"private": false
},
{
"title": "Text area word count",
"description": "Validates the length of a text area based on its word count",
"path": "count-words-in-textarea",
"private": false
},
{
"title": "Connect to LLM backend",
"description": "Sends prompts to an LLM URL",
"path": "llm-backend",
"private": false
},
{
"title": "Markdown to HTML",
"description": "Converts markdown to HTML format",
"path": "markdown-to-html",
"private": false
},
{
"title": "Text span overlap validation",
"description": "Prevents overlap of text spans",
"path": "ner-text-span-overlap-validation",
"private": false
},
{
"title": "Spam and bot detection",
"description": "Pauses an annotator if bot behavior in detected",
"path": "pausing-annotator",
"private": false
},
{
"title": "Data visualization",
"description": "Display a Plotly chart to annotators",
"path": "plotly",
"private": false
},
{
"title": "Redact annotator PII",
"description": "Anonymize the annotator to reduce bias",
"path": "redact-pii",
"private": false
},
{
"title": "Dynamic image swap",
"description": "Changes active image based on conditions",
"path": "different-images-per-label",
"private": false
},
{
"title": "Spellcheck",
"description": "Validates misspelled text",
"path": "spellcheck",
"private": false
},
{
"title": "Validate JSON",
"description": "Checks that the introduced text is a valid JSON",
"path": "validate-json-in-textarea",
"private": false
},
{
"title": "Simple content moderation",
"description": "Prevents saving annotations containing inappropriate content",
"path": "simple-content-moderation",
"private": false
},
{
"title": "Multi-frame video view",
"description": "Synchronizes multiple video views to display a video with different frame offsets",
"path": "multi-frame-video-view",
"private": false
}
]