fix js userscript

This commit is contained in:
Aravinth Manivannan 2021-10-31 23:11:12 +05:30
parent bc45c6f5dd
commit 6ea970e7a6
Signed by: realaravinth
GPG key ID: AD9F0F08E855ED88

View file

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name LibMedium proxy // @name LibMedium proxy
// @version 0.1.1 // @version 0.1.0
// @description Re-writes medium.com URLs in point to libmedium // @description Re-writes medium.com URLs in point to libmedium
// @author Aravinth Manivannan // @author Aravinth Manivannan
// @match https://*/* // @match https://*/*
@ -20,13 +20,14 @@ const libmediumHost = "https://libmedium.batsense.net";
// morty has a button to go to the original site, re-writing that would be stupid // morty has a button to go to the original site, re-writing that would be stupid
if (!window.location.href.includes(libmediumHost)) { if (!window.location.href.includes(libmediumHost)) {
let urls = document.links; let urls = document.links;
let lib = new URL(libmediumHost);
for (let i = 0; i < urls.length; i++) { for (let i = 0; i < urls.length; i++) {
blacklist.forEach((url) => { blacklist.forEach((url) => {
if (urls[i].host.includes(url)) { if (urls[i].host.includes(url)) {
urls[i].host = libmediumHost; urls[i].host = lib.host;
} }
}); });
} }
} }
})(); })();