-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
93 lines (91 loc) · 2.27 KB
/
webpack.config.js
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
84
85
86
87
88
89
90
91
92
93
const ScriptCatWebpackPlugin = require("./lib/plugin");
module.exports = {
entry: {
app: './src/index.js',
},
output: {
filename: '[name].js',
path: __dirname + '/dist'
},
plugins: [
new ScriptCatWebpackPlugin({
file: "app.js",
name: "New Userscript",
namespace: "https://bbs.tampermonkey.net.cn/",
version: "0.1.0",
description: "try to take over the world!",
author: "You",
metadata: {
grant: [
"GM_xmlhttpRequest",
"GM_notification"
],
match: "https://bbs.tampermonkey.net.cn/",
background: ""
},
requireFile: [
"./tests/test-require.js"
],
}, {
group1: {
configA: { // 键值为group.config,例如本键为:group1.configA
title: "配置A", // 配置的标题
description: "这是一个文本类型的配置", // 配置的描述内容
type: "text", // 选项类型,如果不填写会根据数据自动识别
default: "默认值", // 配置的默认值
min: 2, // 文本最短2个字符
max: 18, // 文本最长18个字符
password: true // 设置为密码
},
configB: {
title: "配置B",
description: "这是一个选择框的配置",
type: "checkbox",
default: true
},
configC: {
title: "配置C",
description: "这是一个列表选择的配置",
type: "select",
default: 1,
values: [1, 2, 3, 4, 5]
},
configD: {
title: "配置D",
description: "这是一个动态列表选择的配置",
type: "select",
bind: "$cookies" // 动态显示绑定的values,值是以$开头的key,value需要是一个数组
},
configE: {
title: "配置E",
description: "这是一个多选列表的配置",
type: "mult-select",
default: [1],
values: [1, 2, 3, 4, 5]
},
configF: {
title: "配置F",
description: "这是一个动态多选列表的配置",
type: "mult-select",
bind: "$cookies"
},
configG: {
title: "配置G",
description: "这是一个数字的配置",
type: "number",
default: 1,
min: 10, // 最小值
max: 16, // 最大值
unit: "分" // 表示单位
}
},
group2: {
configX: {
title: "配置A",
description: "这是一个文本类型的配置",
default: "默认值"
}
}
})
],
}