forked from gideonsenku/Scriptable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Install Scripts.js
89 lines (89 loc) · 2.37 KB
/
Install Scripts.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
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: brown; icon-glyph: download;
/**
* Author: GideonSenku
* Github: https://github.com/GideonSenku
*/
const scripts = [
{
moduleName: "10010",
url:
"https://raw.githubusercontent.com/GideonSenku/Scriptable/master/10010/10010.js",
},
{
moduleName: "10086",
url:
"https://raw.githubusercontent.com/GideonSenku/Scriptable/master/10086/10086.js",
},
{
moduleName: "BilibiliMonitor",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/BilibiliMonitor.js",
},
{
moduleName: "RRShareMonitor",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/RRShareMonitor.js",
},
{
moduleName: "RSSMonitor",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/RSSMonitor.js",
},
{
moduleName: "WeiboMonitor",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/WeiboMonitor.js",
},
{
moduleName: "ZhihuMonitor",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/ZhihuMonitor.js",
},
{
moduleName: "DoubanMonitor",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/DoubanMonitor.js",
},
{
moduleName: "Env",
url:
"https://raw.githubusercontent.com/GideonSenku/Scriptable/master/Env.js",
},
{
moduleName: "Install Scripts",
url:
"https://raw.githubusercontent.com/GideonSenku/Scriptable/master/Install%20Scripts.js",
},
{
moduleName: "Checkin",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/Checkin.js",
},
{
moduleName: "Dler Cloud",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/Dler%20Cloud.js",
},
{
moduleName: "AppPriceMonitor",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/AppPriceMonitor.js",
},
{
moduleName: "北京尾号限行",
url:
"https://raw.githubusercontent.com/evilbutcher/Scriptables/master/%E5%8C%97%E4%BA%AC%E5%B0%BE%E5%8F%B7%E9%99%90%E8%A1%8C.js",
},
];
// Install Scripts.js
const $ = importModule("Env");
function update() {
log("🔔更新脚本开始!");
scripts.forEach((script) => {
$.getFile(script);
});
log("🔔更新脚本结束!");
}
update();