-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
43 lines (43 loc) · 1.01 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
{
"api_version": "3",
"authors": "Albin Larsson",
"name": "Hash",
"icon": "icon.svg",
"triggers": {
"hash": {
"name": "Hash",
"keyword": "hash",
"description": "Show a list of supported hash algoritm checksums for an input"
},
"md5": {
"name": "md5",
"keyword": "md5",
"description": "Show md5 checksum for an input"
},
"sha1": {
"name": "sha1",
"keyword": "sha1",
"description": "Show sha1 checksum for an input"
},
"sha224": {
"name": "sha224",
"keyword": "sha224",
"description": "Show sha224 checksum for an input"
},
"sha256": {
"name": "sha256",
"keyword": "sha256",
"description": "Show sha256 checksum for an input"
},
"sha384": {
"name": "sha384",
"keyword": "sha384",
"description": "Show sha384 checksum for an input"
},
"sha512": {
"name": "sha512",
"keyword": "sha512",
"description": "Show sha512 checksum for an input"
}
}
}