您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Permite volver a Taringa V6
当前为
// ==UserScript== // @name Taringa V6 // @namespace https://greasyfork.org/es/users/205385-xarkox // @description Permite volver a Taringa V6 // @compatible firefox // @compatible chrome // @compatible opera // @match *://*.taringa.net/* // @version 1.1 // @license GPLv3 // @grant none // @require https://code.jquery.com/jquery-3.3.1.min.js // @require https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); var url_host = window.location.hostname; function v6_links_fix(){ $("a[href*='www.taringa.net']").attr("href", function(i, url){ return url.replace("www.taringa.net", "classic.taringa.net"); }); } function taringa_v6(){ if(url_host === "www.taringa.net"){ window.location.replace('https://classic.taringa.net/'); } else if(url_host === "classic.taringa.net"){ v6_links_fix(); } } $(function() { taringa_v6(); });