99Automation

在话费直充接单页和特价专区增加一个红色按钮

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         99Automation
// @namespace    undefined
// @version      0.2
// @description  在话费直充接单页和特价专区增加一个红色按钮
// @author       phoetry
// @match        *://99shou.cn/charge/phone/table?type=doing*
// @include      *://99shou.cn/charge/phone/table/tjzq*
// @license      GPL-3.0-only
// @run-at       document-end
// @grant        nothing
// ==/UserScript==

(function(){
	if(jQuery){
		var x=$(".layui-btn.layui-btn-danger.layui-btn-sm");
		if(x.length>0)
		x.after('<button id="newx" class="layui-btn layui-btn-sm" style="margin-left:4px;background-color:#f0033a" onclick="fastReceive();setInterval(function(){fastReceive();},3333);">我要开挂</button>');
	}
})();