您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirecciona a archive en caso de que el shout esté eliminado
// ==UserScript== // @name Archive shout redirect // @namespace Fabi // @version 0.2 // @description Redirecciona a archive en caso de que el shout esté eliminado // @author Fabi // @include http*://www.taringa.net/*/mi/* // ==/UserScript== if($('#error-ng .message').html() !== null){ $('body').show(); $('#page').hide(); $('body').append('<div id="page" style="text-align:center;margin: 0 auto;width: 500px;position: static;margin-top: 12%;"><img src="//k61.kn3.net/D/5/0/0/1/C/E90.png" style="width: 157px;"><h3>Cargando</h3><p>Shout Eliminado</p></div>'); var regStr=/http.*:\/\/.*\.taringa\.net\/.*\/mi\/([a-z0-9]*[^\/?#])/ig; var res = regStr.exec(document.location.href); document.location.href="https://archive.taringo.xyz/shout/"+res[1]; }