您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
MT论坛效果增强,如自动签到、自动展开帖子、滚动加载评论、显示UID、屏蔽用户、手机版小黑屋、编辑器优化、在线用户查看、便捷式图床等
当前为
// ==UserScript==
// @name MT论坛-无油猴版
// @namespace http://tampermonkey.net/
// @description MT论坛效果增强,如自动签到、自动展开帖子、滚动加载评论、显示uid、屏蔽用户、手机版小黑屋、编辑器优化等
// @version 0.1
// @author WhiteSevs
// @match *://bbs.binmt.cc/*
// @license GPL-3.0-only
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
window.tampermonkeyByMT = `
(function() {
'use strict';
const JSResource = ["https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.4.1/jquery.min.js",
"https://gf.qytechs.cn/scripts/449562-nzmsgbox/code/NZMsgBox.js",
"https://unpkg.com/any-touch/dist/any-touch.umd.min.js",
"https://gf.qytechs.cn/scripts/449471-viewer/code/Viewer.js",
"https://gf.qytechs.cn/scripts/449512-xtiper/code/Xtiper.js",
"https://gf.qytechs.cn/scripts/452322-js-watermark/code/js-watermark.js",
"https://gf.qytechs.cn/scripts/456607-gm-html2canvas/code/GM_html2canvas.js",
"https://gf.qytechs.cn/scripts/455186-whitesevsutils/code/WhiteSevsUtils.js"];
const url = "https://gf.qytechs.cn/scripts/401359-mt%E8%AE%BA%E5%9D%9B/code/MT%E8%AE%BA%E5%9D%9B.user.js";
function loadJS(url){
return new Promise( (res) => {
let tempNode = document.createElement("script");
tempNode.setAttribute("src", url);
document.head.append(tempNode);
tempNode.onload = () => {
res();
}
})
}
async function asyncLoadAllScript() {
for(var item of JSResource){
console.log("引入js: "+item);
await loadJS(item);
console.log("完毕");
}
console.log("引入油猴主js: "+url);
loadJS(url);
console.log("完毕");
}
asyncLoadAllScript();
})();`;
let tempNode = document.createElement("script");
tempNode.innerHTML = window.tampermonkeyByMT;
document.head.append(tempNode);
})();
[]
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址