Skip to content

Instantly share code, notes, and snippets.

@shameen
Last active May 15, 2021 15:27
Show Gist options
  • Save shameen/62157b714cb417c258caa01b62d4df1b to your computer and use it in GitHub Desktop.
Save shameen/62157b714cb417c258caa01b62d4df1b to your computer and use it in GitHub Desktop.
MHW fextralife wiki full width (userscript)
// ==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