// ==UserScript== // @name 知乎简书外链不停转 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author a3VjZWNl // @match https://link.zhihu.com/?target=* // @match https://www.jianshu.com/go-wild?* // @match http://t.cn/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; let href = window.location.href if (href.indexOf('https://link.zhihu.com/?target=') != -1) { // close zhihu login page when not logged window.onload = () => { let btn = document.querySelector('a.button') if (btn) btn.click() return } } if (href.indexOf('https://www.jianshu.com/go-wild?') != -1) { // close zhihu login page when not logged window.onload = () => { window.location.href = document.querySelector("textarea").value; } } if (href.indexOf('http://t.cn/') != -1) { // close zhihu login page when not logged window.onload = () => { window.location.href = document.querySelector("p.link").innerText; } } //QQ邮箱不进行匹配为了安全 })();