Redirects link shortener shortlink segurosdevida.site for some sites including mandranime.com
// ==UserScript==// @name Redirect Segurosdevida.site link shortener shortlink// @version 1.0// @description Redirects link shortener shortlink segurosdevida.site for some sites including mandranime.com// @author Rust1667// @match *://segurosdevida.site/*// @grant none// @namespace https://greasyfork.org/users/980489// ==/UserScript==(function() {'use strict';// Function to extract the URL from the onclick attributefunction extractUrlFromOnclick(onclickValue) {// Use regular expression to extract the URLvar match = onclickValue.match(/window\.open\('([^']+)'/);return match ? match[1] : null;}// Find elements with onclick attributevar elementsWithOnclick = document.querySelectorAll('[onclick]');// Loop through the elements and check for onclick attributeelementsWithOnclick.forEach(function(element) {// Extract the URL from onclick attributevar url = extractUrlFromOnclick(element.getAttribute('onclick'));// If a valid URL is found, redirect the pageif (url) {window.location.href = url;}});})();