mirror of
https://github.com/chylex/Userscripts.git
synced 2025-04-30 07:34:04 +02:00
36 lines
957 B
JavaScript
36 lines
957 B
JavaScript
// ==UserScript==
|
|
// @name Old Wikipedia Design
|
|
// @description Reverts to the old Vector design.
|
|
// @author Vusys, chylex
|
|
// @version 2
|
|
// @license MIT
|
|
// @namespace https://chylex.com
|
|
// @homepageURL https://github.com/chylex/Userscripts
|
|
// @supportURL https://github.com/chylex/Userscripts/issues
|
|
// @include https://*.wikipedia.org/*
|
|
// @exclude https://*.wikipedia.org/
|
|
// @run-at document-start
|
|
// @grant none
|
|
// ==/UserScript==
|
|
|
|
(function() {
|
|
function fixUrl(href) {
|
|
const url = new URL(href);
|
|
url.searchParams.set("useskin", "vector");
|
|
return url.href;
|
|
}
|
|
|
|
if (!window.location.search.includes("useskin=")) {
|
|
location.replace(fixUrl(window.location.href));
|
|
return;
|
|
}
|
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
for (const a of document.getElementsByTagName("a")) {
|
|
if (a.hostname.includes("wikipedia.org")) {
|
|
a.href = fixUrl(a.href);
|
|
}
|
|
}
|
|
});
|
|
})();
|