NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GBF Top Co-op Menu // @version 20190410.1 // @description Moves your Co-op room menu to the top. // @match *://game.granbluefantasy.jp/* // @match *://gbf.game.mbga.jp/* // @downloadURL https://openuserjs.org/src/scripts/Recyclex/GBF_Top_Co-op_Menu.user.js // @updateURL https://openuserjs.org/src/scripts/Recyclex/GBF_Top_Co-op_Menu.user.js // @license MIT // ==/UserScript== (function() { 'use strict'; var link = window.document.createElement('link'); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = 'data:text/css,' + // Selectors start here '.prt-foot-buttons {position: absolute !important; top: 60px; left: 65px; z-index: 10 !important;' + 'transform: scale(0.65) !important; margin-top: 0px !important; box-sizing: border-box !important;' + 'width: 0px !important; height: 0px !important; padding: 0px !important;' + '}' + '.prt-foot-buttons::before {border-width: 0px !important;}' + '.prt-foot-buttons .prt-daily-mission .prt-daily-count {display: none !important;}' ; document.getElementsByTagName("HEAD")[0].appendChild(link); })();