mirror of
https://github.com/chylex/Userscripts.git
synced 2025-04-29 05:15:43 +02:00
Update 'Old Wikipedia Design' to redirect faster
This commit is contained in:
parent
fa104cf684
commit
bd10edeb73
@ -2,14 +2,14 @@
|
|||||||
// @name Old Wikipedia Design
|
// @name Old Wikipedia Design
|
||||||
// @description Reverts to the old Vector design.
|
// @description Reverts to the old Vector design.
|
||||||
// @author Vusys, chylex
|
// @author Vusys, chylex
|
||||||
// @version 1
|
// @version 2
|
||||||
// @license MIT
|
// @license MIT
|
||||||
// @namespace https://chylex.com
|
// @namespace https://chylex.com
|
||||||
// @homepageURL https://github.com/chylex/Userscripts
|
// @homepageURL https://github.com/chylex/Userscripts
|
||||||
// @supportURL https://github.com/chylex/Userscripts/issues
|
// @supportURL https://github.com/chylex/Userscripts/issues
|
||||||
// @include https://*.wikipedia.org/*
|
// @include https://*.wikipedia.org/*
|
||||||
// @exclude https://*.wikipedia.org/
|
// @exclude https://*.wikipedia.org/
|
||||||
// @run-at document-end
|
// @run-at document-start
|
||||||
// @grant none
|
// @grant none
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
@ -25,9 +25,11 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const a of document.getElementsByTagName("a")) {
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
if (a.hostname.includes("wikipedia.org")) {
|
for (const a of document.getElementsByTagName("a")) {
|
||||||
a.href = fixUrl(a.href);
|
if (a.hostname.includes("wikipedia.org")) {
|
||||||
|
a.href = fixUrl(a.href);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
})();
|
})();
|
||||||
|
Loading…
Reference in New Issue
Block a user