赛尔号官网页面精简化

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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]);
}