您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide showcases from the PoGO Alerts Network map so that only Kecleon stops will appear. Does not work from 7pm to 8pm.
// ==UserScript== // @name PoGO Alerts Network - Hide Showcases // @namespace https://github.com/SlyAceZeta/UserScripts // @version 1.0.0 // @description Hide showcases from the PoGO Alerts Network map so that only Kecleon stops will appear. Does not work from 7pm to 8pm. // @author SlyAceZeta // @match https://www.pogoalerts.net/map/ // @icon https://icons.duckduckgo.com/ip2/pogoalerts.net.ico // @grant none // @license GNU General Public License v3.0 // ==/UserScript== (function() { 'use strict'; function hideShowcases(){ var d = new Date(); var hour = d.getHours(); if(hour !== 19){ document.getElementByClassName("stop-rocket-marker").each(function(){ if(this.innerText.includes("h") || this.innerText.includes("expired")) this.style.display = "none"; }); } setTimeout(hideShowcases, 5000); } hideShowcases(); })();