Created
April 8, 2021 21:03
-
-
Save paulchabotca/2487186ce489ed780d12e8b7cb8c3e49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Wikipedia mobile4desktop | |
// @namespace https://www.paulchabot.ca | |
// @version 0.1 | |
// @description gives you the mobile version of wikipedia on desktop | |
// @author Paul Chabot | |
// @match https://*.wikipedia.org/wiki/* | |
// @run-at document-start | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
//alert(location + '?mobileaction=toggle_view_mobile'); | |
if (/\?$/.test (location.pathname) ) { | |
var new_url = location + '?mobileaction=toggle_view_mobile'; | |
location.replace(new_url); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment