您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
If hunters need you to boost them, this will notify you of that
当前为
// ==UserScript== // @name GT - Community Boosts Notifier // @version 1.5 // @description If hunters need you to boost them, this will notify you of that // @author Rani Kheir // @match *www.ghost-trappers.com/fb/hunt.php* // @match *www.ghost-trappers.com/fb/camp.php* // @namespace https://gf.qytechs.cn/users/4271 // ==/UserScript== (function() { 'use strict'; var x_x = $.get("/fb/live_feed_boost.php", function( response ) { var y_y = x_x.responseText; if (y_y.search("No team member needs help at the moment.") < 0) { var paragraphElement = document.createElement("p"); paragraphElement.appendChild(document.createTextNode("Hunters need you to Boost 'em!")); // "You've got hunters to Boost!" paragraphElement.style.color = "white"; paragraphElement.style.fontWeight = "bold"; paragraphElement.style.textShadow = "3px 2px 1px #000000"; paragraphElement.style.fontSize = "medium"; paragraphElement.style.padding = "20px 0 0 0"; document.getElementsByClassName("slotMore")[0].parentElement.parentElement.parentElement.appendChild(paragraphElement); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址