您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
[四川移动][家客网开][自动退单]
当前为
// ==UserScript== // @name 家客网开系统退单 // @namespace [url=mailto:[email protected]][email protected][/url] // @version 0.1.5 // @description [四川移动][家客网开][自动退单] // @author 潘宇_QQ552397723_TEL18380123411 // @match http://223.86.3.36:7060/WebRoot/installBaseAction.action?method=toOver /*查询页面 */ // @match http://223.86.3.36:7060/WebRoot/installBaseAction.do?method=over&ifId=* /*操作页面 */ // @match http://223.86.3.36:7060/WebRoot/installBaseAction.action?method=take /*关闭页面 */ // @run-at document-start // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; (function() { 'use strict'; setTimeout(function () { document.getElementsByTagName("iframe")[0].contentDocument.getElementsByClassName("iconfont icon-gongdandiaozheng")[0].click() setInterval(function () { setTimeout(function () { document.getElementsByTagName("iframe")[0].contentDocument.getElementsByClassName("app-frame")[0].contentDocument.getElementsByClassName("col-md-12 app-grid-title ng-binding")[0].click() setTimeout(function () { document.getElementsByTagName("iframe")[0].contentDocument.getElementsByClassName("app-frame")[0].contentDocument.getElementsByTagName("iframe")[0].contentDocument.getElementsByClassName("btn btn-info btn-flow")[0].click(); },1000); },2000); },3000); },1000); // Your code here... })();