// ==UserScript== // @name Remove Gamekee custom pointers // @namespace http://tampermonkey.net/ // @version 2024-03-07 // @description 233 // @author You // @match https://www.gamekee.com/ba/* // @icon https://www.google.com/s2/favicons?sz=64&domain=gamekee.com // @grant none // ==/UserScript== (function() { 'use strict'; // 创建一个观察器实例 var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { if (mutation.attributeName === "style") { document.body.removeAttribute("style"); } }); }); // 配置观察选项: var config = { attributes: true }; // 传入目标节点和观察选项 observer.observe(document.body, config); })();