Tempermonkey脚本代码分享,Tempermonkey链接替换,此代码可以暴力替换页面的链接, 去除知乎重定向, 直接跳转到页面。注意,源代码中 // @match https://*.5devip.com/* 表示你要在那个网站上使用这个脚本,下面的代码是指把网站 www.5devip.com 里所有带 www.5devip.com的链接替换成 https://www.ccvok.com/?url=https://www.5devip.com
// ==UserScript== // @name 雅爱淘宝客链接转iid // @namespace http://tampermonkey.net/ // @version 0.1 // @description 把别人网站里的淘宝链接转iid // @author You // @include https://yaaibk.com/ // @match https://*.5devip.com/* // @grant none // ==/UserScript== (function() { 'use strict'; //替换所有链接 function replaceAllLink() { var as = document.getElementsByTagName("a"); for(var i=0;i<as.length;i++){ if(as[i].href.indexOf("www.5devip.com")!==-1) { as[i].href = decodeURIComponent( as[i].href.replace("http://www.5devip.com", "https://www.ccvok.com/?url=https://www.5devip.com") .replace("https://www.5devip.com", "https://www.ccvok.com/?url=https://www.5devip.com")); } } } replaceAllLink(); })();
或者用下面的:
// ==UserScript== // @name 雅爱淘宝客链接转iid // @namespace http://tampermonkey.net/ // @version 0.1 // @description 把别人网站里的淘宝链接转iid // @author You // @include https://yaaibk.com/ // @match https://*.5devip.com/* // @require https://cdn.staticfile.org/jquery/3.3.1/jquery.min.js // @grant none // ==/UserScript== (function() { 'use strict'; //替换所有链接 $('a').each(function(){ var href = $(this).attr('href'); if(href){ href = href.replace('https://yaaibk.com/','https://www.ccvok.com/?url=https://yaaibk.com/'); $(this).attr('href',href); } }); })();