1 Star 0 Fork 0

123/MyTampermonkeyRep

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
吾爱破解网盘链接激活工具 by lsj8924.js 1.92 KB
一键复制 编辑 原始数据 按行查看 历史
123 提交于 2022-04-20 22:47 . 初始代码
// ==UserScript==
// @name 吾爱破解网盘链接激活工具 by lsj8924
// @namespace https://greasyfork.org/zh-CN/users/64266-lsj8924
// @description 激活吾爱破解论坛的百度和360网盘的链接,可以直接点击。
// @include http://www.52pojie.cn/forum*
// @include http://www.52pojie.cn/thread*
// @version 1.0.4
// @grant unsafeWindow
// @require http://cdn.bootcss.com/jquery/2.2.4/jquery.min.js
// ==/UserScript==
function activelink(re, nre) {
$('.t_f').each(function () {
//console.log('info:'+ $(this).html());
// var link = re.exec($(this).html());
if (($(this).html()).match(nre)) return;
var link = ($(this).html()).match(re);
console.log(link);
if (link) {
var ss = $(this).html();
ss = ss.replace(re, '<a target="_blank" href="$1" style="color: rgb(63, 211, 68); text-decoration:none;">$1</a>');
$(this).html(ss);
}
});
}
var re_baidu = /((?:https?:\/\/)?(?:yun|pan|eyun).baidu.com\/(?:s\/\w*|share\/\S*\d))/g; //更直观的写法
var re_ex_baidu = /(href="https?:\/\/(yun|pan|eyun).baidu.com\/(?:s\/\w*|share\/\S*\d))/g;
activelink(re_baidu, re_ex_baidu);
//var re_360 = /(https?:\/\/yunpan.cn\/\w*)/g;
//var re_ex_360 = /href="https?:\/\/yunpan.cn\/\w*/g;
//activelink(re_360, re_ex_360);
var re_weiyun = /(https?:\/\/(share.weiyun.com|url.cn)\/\w*)/g;
var re_ex_weiyun = /href="https?:\/\/(share.weiyun.com|url.cn)\/\w*/g;
activelink(re_weiyun, re_ex_weiyun);
var temp = /(<\/font><font color="#\w*">h<\/font><font color="#\w*">t<\/font>.*font>)/g;
$('.t_f').each(function () {
var link = ($(this).html()).match(temp);
if (link) {
link = link[0].replace(/<font color="#\w*">|<\/font>/g, "").match(/htt.*?(?=\s)/)[0];
console.log(link);
}
var ss = $(this).html();
var m = '<a target="_blank" href=' + link + ' style="color: rgb(63, 211, 68); text-decoration:none;">$1</a>';
ss = ss.replace(temp, m);
$(this).html(ss);
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/yp_program/my-tampermonkey-rep.git
git@gitee.com:yp_program/my-tampermonkey-rep.git
yp_program
my-tampermonkey-rep
MyTampermonkeyRep
master

搜索帮助