跳过新浪短网址安全检测

跳过新浪短网址安全检测。

// ==UserScript==
// @name         跳过新浪短网址安全检测
// @namespace    https://greasyfork.org/users/49622
// @version      0.1
// @description  跳过新浪短网址安全检测。
// @author       过去终究是个回忆
// @match        http://t.cn/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    var link = document.querySelector('.link')
    link && window.location.replace(link.textContent)
})();