Nexus Clash: Wiki Navbar Fix (Chrome)

fixes the old monobook khtml css "fix" for Chrome, which puts the nav bar below the page content

当前为 2014-08-10 提交的版本,查看 最新版本

// ==UserScript==
// @name       Nexus Clash: Wiki Navbar Fix (Chrome)
// @namespace  http://nexusclash.com/wiki/index.php/user:xensyria
// @version    1.0
// @description  fixes the old monobook khtml css "fix" for Chrome, which puts the nav bar below the page content
// @match      http://*.nexusclash.com/wiki*
// @copyright  PD
// ==/UserScript==

for (var i = 0; i < document.styleSheets.length; i++) {
	if (document.styleSheets[i].ownerNode.textContent == "@import \"/wiki/skins/monobook/KHTMLFixes.css\";"){
		document.styleSheets[i].disabled = true;
	}
}

QingJ © 2025

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