您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
游民星空新闻、攻略显示简化。
// ==UserScript== // @name 游民星空文章简洁显示 // @namespace http://tampermonkey.net/ // @version 0.0.3 // @description 游民星空新闻、攻略显示简化。 // @author fengqi // @match *://*.gamersky.com/handbook/*/*.shtml // @match *://*.gamersky.com/news/*/*.shtml // @match *://*.gamersky.com/gl/*/*.shtml // @match *://*.gamersky.com/hardware/*/*.shtml // @match *://*.gamersky.com/tech/*/*.shtml // @icon https://www.gamersky.com/favicon.ico // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; window.onload=()=>{ const classesToDelete = [ 'Mid2_R', 'Mid_top', 'Top', 'QZnav', 'fixedCode', 'Bot', 'Relevant', 'Comment', 'box', 'bgAdWrap', 'gs_comm_content_bot_fun', 'gs_ccs_solve', 'supportMe', 'referencecontent', ]; document.querySelectorAll(classesToDelete.map(cls => `.${cls}`).join(',')).forEach(el => el.remove()); document.querySelectorAll('div.Mid2_L').forEach(el => { el.style.float = 'none'; el.style.margin = '0 auto'; }); document.querySelectorAll('div.Mcenter').forEach(el => { el.style.padding = '0'; }); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址