We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a31d1c4 commit 5f33811Copy full SHA for 5f33811
1 file changed
GithubEnhanced-High-Speed-Download.user.js
@@ -1,8 +1,8 @@
1
// ==UserScript==
2
// @name Github 增强 - 高速下载
3
-// @version 1.1.3
+// @version 1.1.4
4
// @author X.I.U
5
-// @description 高速下载 Clone、Release、Raw、Code(ZIP)
+// @description 为 Github 的 Clone、Release、Raw、Code(ZIP) 添加高速下载
6
// @match https://github.com/*/*
7
// @match https://github.com/*/*/releases
8
// @match https://github.com/*/*/releases/*
@@ -54,6 +54,9 @@
54
setTimeout(addDownLink, 2000); // 添加 Raw 下载链接(添加到项目页文件名称后面),延迟 2 秒执行,避免被 pjax 刷掉
55
56
$(document).on('pjax:success',function(evt){
57
+ addRelease(); // Release 加速
58
+ addDownloadZIP(); // Source Code 加速
59
+ addGitClone(); // Download ZIP/Code(ZIP) 加速
60
addRawFile(); // pjax 事件发生后,添加 Raw 加速按钮 及 Raw 下载链接
61
setTimeout(addDownLink, 2000); // 延迟 2 秒执行,避免被 pjax 刷掉
62
});
0 commit comments