Greasy Fork is available in English.

70-Seas.ndaniel Patch

Automatically replace links to 70-seas.com with 70-seas.ndaniel.com as a workaround for the new domain name.

// ==UserScript==
// @name         70-Seas.ndaniel Patch
// @namespace    https://revelromp.com
// @version      0.1
// @description  Automatically replace links to 70-seas.com with 70-seas.ndaniel.com as a workaround for the new domain name.
// @author       Retl
// @match        *://70-seas.ndaniel.com/*
// @match        *://www.70-seas.ndaniel.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var update70SeasLinks = function () {document.querySelector("head").innerHTML = document.querySelector("head").innerHTML.replace(/70\-seas\.com/g, "70-seas.ndaniel.com");
    document.querySelector("body").innerHTML = document.querySelector("body").innerHTML.replace(/70\-seas\.com/g, "70-seas.ndaniel.com");}
    update70SeasLinks();
})();