您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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 attribute function extractUrlFromOnclick(onclickValue) { // Use regular expression to extract the URL var match = onclickValue.match(/window\.open\('([^']+)'/); return match ? match[1] : null; } // Find elements with onclick attribute var elementsWithOnclick = document.querySelectorAll('[onclick]'); // Loop through the elements and check for onclick attribute elementsWithOnclick.forEach(function(element) { // Extract the URL from onclick attribute var url = extractUrlFromOnclick(element.getAttribute('onclick')); // If a valid URL is found, redirect the page if (url) { window.location.href = url; } }); })();