Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/b016c8c74fc3f5df7f54478a8d9d589a.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Mydealz Direktlink statt Redirect
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Redirect-Links durch die echte Ziel-URL ersetzen
// @match https://www.mydealz.de/profile/messages/*
// @author MD928835
// @license MIT
// @grant none
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('a.link[title]').forEach(a => {
if (a.href.includes('/visit/privatemessage/')) {
let url = a.title.trim();
// Prüfen, ob bereits ein Protokoll vorhanden ist
if (!/^https?:\/\//i.test(url)) {
url = 'https://' + url.replace(/^\/+/, '');
}
a.href = url;
}
});
})();