-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
43 lines (38 loc) · 982 Bytes
/
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
// 搜索引擎
const engines = [
{name: 'ecosia', engine: 'https://www.ecosia.org/search?q='},
{name: 'google', engine: 'https://www.google.com.hk/search?q='},
{name: 'baidu', engine: 'https://www.baidu.com/s?wd='},
{name: 'yandex', engine: 'https://yandex.com/search/?text='}
];
// 搜藏列表
const collection = {
"资源": [
{
"name": "高清图库",
"engine": "https://unsplash.com"
}
],
"工具": [
{
"name": "影视解析",
"engine": "https://svip.bljiex.cc"
},
{
"name": "Greasy Fork",
"engine": "https://greasyfork.org/zh-CN"
},
{
"name": "万能命令",
"engine": "https://wn.run"
},
{
"name": "MikuTools",
"engine": "https://tools.miku.ac"
}
]
};
export {
engines,
collection
}