Skip Linkpage

解除Gitee.com,oschina.net,zhihu.com,jianshu.com,csdn.net等对于访问外部链接需要进行确认,安装后不会再有对于外部链接访问的限制。

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Skip Linkpage
// @namespace    https://greatest.deepsurf.us/zh-CN/scripts/440550-skip-linkpage
// @version      0.3
// @description  解除Gitee.com,oschina.net,zhihu.com,jianshu.com,csdn.net等对于访问外部链接需要进行确认,安装后不会再有对于外部链接访问的限制。
// @author       duice#foxmail.com
// @match       https://gitee.com/link?target=*
// @match       https://www.oschina.net/action/GoToLink?url=*
// @match       https://link.csdn.net/?target=*
// @match       https://link.zhihu.com/?target=*
// @match       https://www.jianshu.com/go-wild*
// @icon
// @license   GPL
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var pageurl = window.location.href;
    var targeturl=pageurl.split("=");
    window.location =decodeURIComponent(targeturl[targeturl.length-1]);
})();