summaryrefslogtreecommitdiff
path: root/desktopwikipedia.es
blob: 83cf7ef8df02618520946e068564c62a7190b6cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ==UserScript==
// @name        Desktop Wikipedia
// @description Redirects to Wikipedia from its mobile version.
// @match       https://*.m.wikipedia.org/*
// @version     1.0
// @run-at      document-start
// ==/UserScript==

// By Nicolas Paul <nico@puffer.fish>: unrestricted use given this notice
// remains.

top.location.hostname = top.location.hostname.replace('.m.', '.');

// vi: ft=javascript