Greasy Fork is available in English.

Mxtube.net to YouTube

Replaces Mxtube.net links with YouTube links

// ==UserScript==
// @name             Mxtube.net to YouTube
// @namespace   tuktuk3103@gmail.com
// @description   Replaces Mxtube.net links with YouTube links
// @include          *://mxtube.net/*
// @version          1.00
// @grant              none
// @icon                https://mxtube.net/mx.jpg
// ==/UserScript==

function pageFullyLoaded () {

var link = document.getElementById("content").getElementsByTagName('a');

for(var i = link.length; i--; i>-1) {

  var key = link[i].getAttribute('href').slice(12, 23);
  link[i].setAttribute('href', "https://www.youtube.com/watch?v=" + key);
  link[i].setAttribute('target', '_blank');

}

};

window.addEventListener ("load", pageFullyLoaded);