NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GBF Remove Menu Sidebar // @version 20190409.1 // @description Removes the menu sidebar. // @match *://game.granbluefantasy.jp/* // @match *://gbf.game.mbga.jp/* // @downloadURL https://openuserjs.org/src/scripts/Recyclex/GBF_Remove_Menu_Sidebar.user.js // @updateURL https://openuserjs.org/src/scripts/Recyclex/GBF_Remove_Menu_Sidebar.user.js // @license MIT // ==/UserScript== (function() { 'use strict'; var elem = document.getElementById("submenu"); elem.parentNode.removeChild(elem); })();