您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
修复了微信文件传输助手网页版中的一些问题
当前为
// ==UserScript== // @name 微信文件传输助手网页版修复工具 // @namespace kazutoiris // @match https://szfilehelper.weixin.qq.com/* // @match https://filehelper.weixin.qq.com/* // @grant none // @version 1.0 // @author kazutoiris // @license Anti-996 License // @run-at document-start // @description 修复了微信文件传输助手网页版中的一些问题 // ==/UserScript== (function () { 'use strict'; // 移除 HTML 转义 let defineProperty = Object.defineProperty; Object.defineProperty = (obj, prop, descriptor) => { if (prop === "encodeHtml") { descriptor.get = () => (_) => _; } return defineProperty(obj, prop, descriptor); } // 登出后禁用关闭页面弹窗 let e = setInterval((() => { let t = document.querySelectorAll("#app")[0].__vue_app__._component.components["v-qrcode"]; if (t) { let setup = t.setup; t.setup = (e, t) => { window.onbeforeunload = null; return setup(e, t); } clearInterval(e); } } ), 300); })();