Jump to content

User:Writ Keeper/Scripts/unmobilePlus.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
if(window.location.host.search("m.wikipedia.org") > 0 || window.location.pathname.search("Special:MobileDiff") > 0)
{
	let urlParams = new URLSearchParams(window.location.search);
	if(!urlParams.has("desktop"))
	{
		urlParams.set("desktop", "");
		let newURL = window.location.protocol + "//" + window.location.host.replace(".m.",".") + window.location.pathname.replace("Special:MobileDiff", "Special:Diff") + "?" + decodeURIComponent(urlParams.toString());
		window.location.replace(newURL);
	}
}
mw.hook("wikipage.content").add( function()
	{
		$("div.mw-parser-output a").each(function(ind, el)
		{
			el.href = el.href.replace("Special:MobileDiff", "Special:Diff");
			if( $(el).hasClass("external"))
			{
				el.href = el.href.replace(".m.", ".");
			}
		});
	});