Greasy Fork 支持简体中文。

赛尔号官网页面精简化

精简赛尔号官方页面,去除其他游戏的滚动展示、十周年页面跳转事件,只保留游戏主体与下方信息等关键内容。

// ==UserScript==
// @name 赛尔号官网页面精简化
// @match *://seer.61.com/
// @version 1.0.0
// @author  橙汁
// @copyright   橙汁
// @namespace http://tampermonkey.net/
// @homepageURL https://space.bilibili.com/293848435
// @supportURL  http://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&[email protected]
// @license     GNU General Public License version 2; https://opensource.org/licenses/GPL-2.0
// @description  精简赛尔号官方页面,去除其他游戏的滚动展示、十周年页面跳转事件,只保留游戏主体与下方信息等关键内容。
// @grant none
// ==/UserScript==

$("body").off("click");

removeClass('brand_zoon');
removeClass('add_1204');
removeClass('product');
removeClass('iframe_banner');
removeClass('topbar_wrap cf');
removeClass('footer-wrap-bott');

function removeClass(ClassName){
  var elem = document.getElementsByClassName(ClassName);
  elem[0].parentNode.removeChild(elem[0]);
}