您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
If hunters need you to boost them, this will notify you of that
当前为
// ==UserScript== // @name GT - Community Boosts Notifier // @version 2.0 // @description If hunters need you to boost them, this will notify you of that // @author Rani Kheir // @include *www.ghost-trappers.com/fb/hunt.php* // @include *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 divElement = document.createElement("div"); divElement.id = "community_boost_notif"; var paragraphElement = document.createElement("a"); divElement.appendChild(paragraphElement); paragraphElement.appendChild(document.createTextNode("Hunters need you to Boost 'em!")); // "You've got hunters to Boost!" paragraphElement.title = "Go to Boosts page.."; paragraphElement.href = "/fb/live_feed_boost.php"; paragraphElement.style.color = "white"; paragraphElement.style.fontWeight = "bold"; paragraphElement.style.textShadow = "3px 2px 1px #000000"; paragraphElement.style.fontSize = "medium"; paragraphElement.style.margin = "30px 0 0 0"; paragraphElement.style.padding = "5px 0 5px 0"; paragraphElement.style.display = "block"; document.getElementsByClassName("slotMore")[0].parentElement.parentElement.parentElement.appendChild(divElement); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址