您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
2020/12/30 下午4:51:35
当前为
// ==UserScript== // @name orderslist // @namespace Violentmonkey Scripts // @include https://gdgpo.czt.gd.gov.cn/gpmall/orders/orderslist.html // @grant none // @version 3.5 // @author 小白 // @description 2020/12/30 下午4:51:35 // ==/UserScript== (function() { window.helloworld = function() { alert('Hello world!'); } window.setTimeout(helloworld()); console.log("--------------in---------test---------------"); var btnHtml = '<a href="javascript:down_order()" class="sbtn sbtn_color">下载表格</a>'; $(".sbtn_box").append(btnHtml); })