// ==UserScript== // @name 核对自动点击辅助 // @version 1.0 // @description 扫码后自动点击核对辅助的脚本 // @author gan // @match https://qcweb.zhuanspirit.com/#/afterSales/afterValidDetail/* // @icon https://s1.zhuanstatic.com/common/img/favicon.ico // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... if(document.querySelector('.ant-modal-footer .ant-btn-primary')!=null){ document.querySelector('.ant-modal-footer .ant-btn-primary').click(); } })();