您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
null
当前为
// ==UserScript== // @name 企业微信审批打印 // @version 1.2 // @description null // @author taylorsweeft // @match https://app.work.weixin.qq.com/wework_admin/approval/* // @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js // @grant none // @namespace https://gf.qytechs.cn/users/968667 // ==/UserScript== (function() { 'use strict'; $(".approval_print_data_title_center[colspan='2']").each(function(){ if($(this).text().indexOf("同意")!= -1){ $(this).text("已同意") } }); $(".approval_print_info_date").hide(); $(".approval_print_qr_image_wrap").hide(); $(".approval_print_qr_text").hide(); $(".approval_print_info_user").hide(); $(".approval_print_data_value").each(function(){ if($(this).text().indexOf(":")!= -1){ console.log($(this).text()) let htmlTxt = $(this).text() $(this).text(htmlTxt.replace(/[0-2][0-9]:[0-9][0-9]/,"")) } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址