Fextra Life Cleanup

Remove the sidebar

// ==UserScript==
// @name         Fextra Life Cleanup
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove the sidebar
// @author       Jonathan
// @match        https://eldenring.wiki.fextralife.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=fextralife.com
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    const elem = document.getElementById('sidebar-wrapper')
    if (elem) { elem.remove();};
    GM_addStyle('#wrapper { padding-left: 0px !important;}');
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址