🏠 Home 

游民星空自动展开全文

2021/5/14下午1:57:51


Install this script?
// ==UserScript==
// @name        游民星空自动展开全文
// @namespace   Violentmonkey Scripts
// @match       https://wap.gamersky.com/*
// @grant       none
// @version     1.0
// @author      -
// @description 2021/5/14下午1:57:51
// ==/UserScript==
(function () {
'use strict';
var showAll = $('.gsAreaContext')[0];
showAll.style = null;
var showAllBtn = $('.gsAreaContextOpen')[0];
showAllBtn.style.display = 'none';
var headerBtn = $('.ymw-header2019')[0];
headerBtn.style.display = 'none';
var appBtn = $('#gsTgWapConBdshareTop')[0];
appBtn.style.display = 'none';
})();