Greasy Fork is available in English.
Update old links on Dsrealm
// ==UserScript==
// @name Dsrealm link updater
// @namespace http://greasyfork.icu/en/users/195019-airminer
// @version 0.4
// @description Update old links on Dsrealm
// @author airminer
// @match https://dsrealmtranslations.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
[].forEach.call(document.querySelectorAll('a[href*="dsrealm.com"]'), function(item) {
item.href = item.href.replace(/dsrealm\.com/,"dsrealmtranslations.com");
});
[].forEach.call(document.querySelectorAll('a[href*="lucksego.com"]'), function(item) {
item.href = item.href.replace(/lucksego\.com/,"dsrealmtranslations.com");
});
})();