Remove Centered Styling

Remove Gaia's centered stylesheet

// ==UserScript==
// @name         Remove Centered Styling
// @namespace    gaiaupgrade
// @version      0.2
// @description  Remove Gaia's centered stylesheet
// @locale       EN
// @author       Knight Yoshi
// @match        http://www.gaiaonline.com/*
// @grant        none
// ==/UserScript==

(function() {
    var centerStyle = document.querySelector('link[href$="core2_centered.css"]');
    if(centerStyle !== null) {
        centerStyle.remove();
    }
})();

QingJ © 2025

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