-
Notifications
You must be signed in to change notification settings - Fork 16
/
plugin.json
53 lines (53 loc) · 1020 Bytes
/
plugin.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
{
"pluginName": "悬浮",
"description": "悬浮你的图片",
"author": "qinyongliang",
"homepage": "https://github.com/qinyongliang/",
"preload": "preload.js",
"version": "1.2.8",
"logo": "icon.png",
"features": [
{
"code": "suspend",
"cmds": [
{
"type": "img",
"label": "悬浮"
},
{
"type": "files",
"label": "悬浮图片",
"fileType": "file",
"match": "/.(?:bmp|gif|heic|jpeg|jpg|jpe|png|svg|webp|ico)$/i",
"maxLength": 9
}
]
},
{
"code": "suspend-screenshot",
"cmds": ["截图并悬浮"]
},
{
"code": "suspend-base64",
"cmds": [
{
"type": "regex",
"label": "悬浮base64图片",
"match": "/^data:image\/(bmp|gif|heic|jpeg|jpeg|jpeg|png|svg\\+xml|webp|x-icon);base64,/",
"minLength":100
}
]
},
{
"code": "suspend-svg",
"cmds": [
{
"type": "regex",
"label": "悬浮svg",
"match": "/^<svg[\\d\\D\\w\\W\\s\\S]*<\/svg>[\\D]*$/",
"minLength":50
}
]
}
]
}