您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
No Gamepedia, you do not need to dedicate space for your shitty siderail thing
// ==UserScript== // @name We Need To Go Wider // @namespace http://tampermonkey.net/ // @version 1.0 // @description No Gamepedia, you do not need to dedicate space for your shitty siderail thing // @author Vincent Tan // @match https://feheroes.gamepedia.com/* // @grant GM_addStyle // @run-at document-start // ==/UserScript== /* Original: @media screen and (min-width: 1350px) { #global-wrapper.with-siderail #content #bodyContent { box-sizing:border-box; float: left; width:calc(100% - 410px - 20px); } */ (function() { 'use strict'; //Thanks to Brock Adams @ https://stackoverflow.com/questions/19385698/how-to-change-a-class-css-with-a-greasemonkey-tampermonkey-script?rq=1 GM_addStyle ( ` @media screen and (min-width: 1350px) { #global-wrapper.with-siderail #content #bodyContent { box-sizing:border-box; float: left; width: 100% !important; } ` ); })();