您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
汇总调休数据
// ==UserScript== // @name math-leave-data // @namespace http://tampermonkey.net/ // @version 0.0.1 // @license MIT // @description 汇总调休数据 // @author hjl // @match https://pc.newland.com.cn/appPortal/kaoqin/home/myteamkq/my_tearm_card_detailList // @icon https://www.google.com/s2/favicons?sz=64&domain=newland.com.cn // @grant none // ==/UserScript== const xlsx ='https://xyfali.postar.cn/postar-st/web/xlsx.full.min.js' function createScript (url,onLoad){ var script = document.createElement('script'); script.src = url; if(onLoad){ script.onload=onLoad } return script } document.body.appendChild(createScript(xlsx)) window.onload = function () { document.body.appendChild(createScript(`https://xyfali.postar.cn/risk-message/leave-calculation.js?time=${new Date().getTime()}`)) }