-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.js
197 lines (185 loc) · 4.77 KB
/
links.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
var links = [
{
name: "Alan Becker视频列表",
icon: "video_library--outlined",
desc: "(站外)免_获取Alan Becker的YouTube视频列表(标题时间链接)",
url: "https://forthezero.pythonanywhere.com/ab",
github: null,
slot: {
time: 0,
recommend: -20,
lang: "cn",
ui: "mdb",
device: "both"
}
},
{
name: "Todo",
icon: "task_alt--outlined",
desc: "An imitative todo app, trigger ctx menu to del item",
url: "./todo/index.html",
github: null,
slot: {
time: 1,
recommend: -15,
lang: "en",
ui: "css",
device: "both"
}
},
{
name: "Zen",
icon: "timer--outlined",
desc: "<del>带记录功能的计时器……</del>一个Material3风格的简约专注网页,可显示一言句子,可以对专注计时进行统计",
url: "./zen/index.html",
github: null,
slot: {
time: 2,
recommend: -65,
lang: "cn",
ui: "material-web",
device: "both"
}
},
{
name: "简单日历",
icon: "date_range--outlined",
desc: "简约的日历,就只由简单的日历功能",
url: "./calendar/index.html",
github: null,
slot: {
time: 3,
recommend: 0,
lang: "cn",
ui: "mdui",
device: "both"
}
},
{
name: "震动测试",
icon: "vibration--outlined",
desc: "仅限带线性马达的手机,随便搞的,更新了2.0版本,但还是不如意……",
url: "./playvib/1.html",
github: null,
slot: {
time: 4,
recommend: -70,
lang: "cn",
ui: "no",
device: "mobile"
}
},
{
name: "QpenForm",
icon: "question_answer--outlined",
desc: "此处仅限前端部分",
url: "./form/index.html",
github: "https://github.com/for-the-zero/QpenForm",
slot: {
time: 5,
recommend: 1,
lang: "cn",
ui: "mdui",
device: "both"
}
},
{
name: "TypeTo",
icon: "keyboard--outlined",
desc: "(仅限电脑使用,需要键盘)将键盘上的按键映射成其它字符,可以拿来整活",
url: "./typeto/index.html",
github: null,
slot: {
time: 6,
recommend: -30,
lang: "cn",
ui: "mdui",
device: "desktop"
}
},
{
name: "Passkey",
icon: "password",
desc: "生成图像密文,不提供解密(懒)",
url: "./passkey/index.html",
github: null,
slot: {
time: 7,
recommend: -100,
lang: "cn",
ui: "no",
device: "both"
}
},
{
name: "VisualVoice",
icon: "voicemail",
desc: "convert voice to color",
url: "./vv/index.html",
github: null,
slot: {
time: 8,
recommend: -80,
lang: "en",
ui: "no",
device: "both"
}
},
{
name: "Taple",
icon: "table_chart--outlined",
desc: "A pretty sinple table app based on canvas",
url: "./taple/index.html",
github: "https://github.com/for-the-zero/Taple",
slot: {
time: 9,
recommend: 100,
lang: "en",
ui: "css",
device: "both"
}
},
{
name: "文本展示",
icon: "smart_screen--outlined",
desc: "将文本展示在屏幕上",
url: "./showon/index.html",
github: null,
slot: {
time: 10,
recommend: -60,
lang: "cn",
ui: "material-web",
device: "both"
}
},
{
name: "UP主动态查看器",
icon: "post_add",
desc: "查看UP主的动态",
url: "./updyn/index.html",
github: "https://github.com/for-the-zero/UpDyn",
slot: {
time: 11,
recommend: 50,
lang: "cn",
ui: "mdui",
device: "both"
}
}
];
const cate_order = {
lang: [['cn','中文'],['en','English']],
ui: [
['mdui','mdui'],
['css','自己写的css/css by myself'],
['material-web','material-web'],
['mdb','MDBootstrap'],
['no','无样式/No Style'],
],
device: [
['both','两者都适用/Both'],
['desktop','桌面/desktop'],
['mobile','移动/mobile']
]
};