1
0
mirror of https://github.com/chylex/Userscripts.git synced 2024-10-18 12:42:46 +02:00

Compare commits

..

No commits in common. "9dc53e3e1d9ffeef5c5b3c29cc33aef5705ec691" and "fa104cf68485cc7fafc8e60b607cae06884d7732" have entirely different histories.

2 changed files with 7 additions and 9 deletions

View File

@ -203,7 +203,7 @@ In theater mode, it expands video to full screen, makes chat transparent and ove
Reverts to the old Vector design. Reverts to the old Vector design.
\[ [Automatically updated](https://github.com/chylex/Userscripts/raw/master/Wikipedia/OldDesign.user.js) \] \[ [Automatically updated](https://github.com/chylex/Userscripts/raw/master/Wikipedia/OldDesign.user.js) \]
\- \-
\[ [Manually updated](https://github.com/chylex/Userscripts/raw/bd10edeb73ded1b0af0c4c715ef4399e9db248e8/Wikipedia/OldDesign.user.js) \] \[ [Manually updated](https://github.com/chylex/Userscripts/raw/2b6bad9b2ba7a25c99e5f5b705de61e3661e89ef/Wikipedia/OldDesign.user.js) \]
\- \-
\[ [Source code](https://github.com/chylex/Userscripts/blob/master/Wikipedia/OldDesign.user.js) \] \[ [Source code](https://github.com/chylex/Userscripts/blob/master/Wikipedia/OldDesign.user.js) \]

View File

@ -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 2 // @version 1
// @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-start // @run-at document-end
// @grant none // @grant none
// ==/UserScript== // ==/UserScript==
@ -25,11 +25,9 @@
return; return;
} }
document.addEventListener("DOMContentLoaded", function() {
for (const a of document.getElementsByTagName("a")) { for (const a of document.getElementsByTagName("a")) {
if (a.hostname.includes("wikipedia.org")) { if (a.hostname.includes("wikipedia.org")) {
a.href = fixUrl(a.href); a.href = fixUrl(a.href);
} }
} }
});
})(); })();