In order to dodge this misbegotten alteration, one can use this Greasemonkey script:
Code: Select all
// ==UserScript==
// @name Vector for Wiktionary
// @namespace wiki1
// @include https://en.wiktionary.org/wiki/*
// @run-at document-start
// @version 1
// @grant none
// ==/UserScript==
if(window.location.href.indexOf('useskin=vector') < 0)
window.location.replace(
window.location.href +
((window.location.href.indexOf('?') < 0) ? '?':'&') +
'useskin=vector'
);