Web Compatibility Support • Re: Wikipedia login page scrolls to bottom
Pale Moon forum - Forum index [Unofficial]
March 13, 2026
Interesting about the "useskin" URL parameter, this can be used to create URL Rewriter rules with regular expressions.
Indeed!
I personally use a Greasemonkey script though;
CODE:
// ==UserScript==// @name Wikipedia vector skin// @version 1// @grant none// @match https://en.wikipedia.org/*// @match https://sv.wikipedia.org/*// @run-at document-start// ==/UserScript==if (! window.location.search) { window.location.search = '?useskin=vector';} else if (! oldSearch.includes('useskin')) { window.location.search += '&useskin=vector';}
Discussion in the ATmosphere