此脚本用于点击新浪微博外链时自动跳转
// weibo-external-link-redirection // ==UserScript== // @name 微博外链重定向 // @namespace weibo-external-link-redirection // @version 0.0.2 // @description 此脚本用于点击新浪微博外链时自动跳转 // @include http://t.cn/* // @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js // @require https://cdn.staticfile.org/jquery/1.12.4/jquery.min.js // @author AmemiyaKokoro // ==/UserScript== (function () { console.log($('.text').html()) if ($('.text').html().includes('将要访问')) { window.location.replace($('.desc').html()) } })();