Last active
May 15, 2021 15:27
-
-
Save shameen/62157b714cb417c258caa01b62d4df1b to your computer and use it in GitHub Desktop.
MHW fextralife wiki full width (userscript)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name monsterhunterworld.wiki.fextralife full width | |
// @namespace http://shameen.info | |
// @version 0.2 | |
// @description try to take over the world! | |
// @author shameen | |
// @match https://monsterhunterworld.wiki.fextralife.com/* | |
// @icon https://www.google.com/s2/favicons?domain=fextralife.com | |
// @updateURL https://gist.github.com/shameen/62157b714cb417c258caa01b62d4df1b/raw/c3ada76a6bc62e500cfc4e4461268dcfbfdd8f69/mhw-fextralife-full-width.user.js | |
// @downloadURL https://gist.github.com/shameen/62157b714cb417c258caa01b62d4df1b/raw/c3ada76a6bc62e500cfc4e4461268dcfbfdd8f69/mhw-fextralife-full-width.user.js | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
//Hide side bar | |
GM_addStyle("#sidebar-wrapper { display:none !important; }") | |
//Full width main content | |
GM_addStyle("#wrapper { padding-left: 0 !important;transition:none }"); | |
//Less table padding | |
GM_addStyle("th, td {padding: 3px 6px !important}") | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment