在知乎、简书这些网站访问外链接,会停在一个中转页面。如:
需要点击继续访问才能去到 Tampermonkey.net页面。
我是习惯点开很多链接之后,等页面加载完成之后才统一浏览的,而等我回头去看,全都卡在 https://link.zhihu.com/ 页面,这让我非常难受。
你可以安装浏览器插件来解决这个问题,如:https://github.com/yuxiaoy1/nonstop。
当然,写个油猴脚本足够了,简单实用,以下:
// ==UserScript==
// @name nonstop
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 防止链接在中转页停下来,直接跳转到目标页
// @author mzhren
// @match https://www.jianshu.com/go-wild?ac=2&url=*
// @match https://link.zhihu.com/?target=*
// @grant none
// ==/UserScript==
(function IIFE() {
'use strict';
function getParam(field,url) {
let href = url ? url : window.location.href;
let URL_object = new URL(href);
let field_value = URL_object.searchParams.get(field);
return field_value;
}
let outlink = getParam('target') || getParam('url');
document.location.href = outlink;
})();