您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Duplicates table for the tickets and places it at the top of the page so the information is easier to get to when loading the account
当前为
// ==UserScript== // @name Pestpac - Duplicate Ticket Table // @version 1.02 // @description Duplicates table for the tickets and places it at the top of the page so the information is easier to get to when loading the account // @match https://app.pestpac.com/* // @author Jamie Cruz // @grant none // @license MIT // Hi, lets see if this works, uhhhh again lol // @namespace https://gf.qytechs.cn/users/1433767 // ==/UserScript== (function() { 'use strict'; // Get the div element you want to duplicate var divElement = document.getElementById("OrderInfo"); // Create a copy of the div element var newDivElement = divElement.cloneNode(true); // Get the div element above which you want to place the new div var targetDivElement = document.getElementById("page-header"); // Insert the new div element above the target div element targetDivElement.parentNode.insertBefore(newDivElement, targetDivElement); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址