Fandom Simplifyer

Hide Global Nav bar and "Community" aside

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Fandom Simplifyer
// @namespace    jsnhlbr5
// @version      0.2
// @description  Hide Global Nav bar and "Community" aside
// @author       Jsnhlbr5
// @license      MIT
// @match        https://*.fandom.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=fandom.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    //Remove unnecessary Fandom bloat
//    document.getElementsByClassName("global-navigation")[0].remove();
    document.getElementById('global-explore-navigation').remove();
    document.getElementsByClassName("page__right-rail")[0].remove();
//    document.getElementsByClassName("wikia-bar")[0].remove();
    document.getElementById('WikiaBar').remove();
    document.getElementsByClassName("notifications-placeholder")[0].remove();

    //Remove the space for the Global Nav bar
    var main = document.getElementsByClassName("main-container")[0];
    main.style.margin = 'auto';
    main.style.width = 'auto';
//    document.getElementsByClassName("fandom-sticky-header")[0].style.left = 0;
})();