try to take over the world!
// ==UserScript==
// @name CSDN 自动跳转网页网页
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://link.csdn.net/?target=*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.location.href=$("a.loading-btn").attr('href');
// Your code here...
})();