Nexus Clash: Wiki Navpane Fix (Chrome)

Fixes the old monobook khtml css "fix" for Chrome, which puts the wiki navigation pane below the page content.

目前为 2014-08-11 提交的版本,查看 最新版本

// ==UserScript==
// @name         Nexus Clash: Wiki Navpane Fix (Chrome)
// @namespace    http://nexusclash.com/wiki/index.php/user:xensyria
// @version      1.1
// @description  Fixes the old monobook khtml css "fix" for Chrome, which puts the wiki navigation pane 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;
	}
}