利用者:ロイヤルオーク/NeverUseMobileVersion.js

/*
  Force Wikipedia to use the desktop version.
  Google on mobile uses "en.m.wikipedia.org", this scripts redirects to the normal version.
  
  CC0
  [[:en:User:Þjarkur/NeverUseMobileVersion.js]] 08:30, 31 July 2020 (UTC) の版より作成
*/
if(window.location.href.match(/^https?:\/\/[^.]+\.m\./)) {
  var desktopUrl = $('#mw-mf-display-toggle').attr('href')
  if(desktopUrl) {
  	window.location.href = desktopUrl
  }
}