Greasy Fork is available in English.
跳过新浪短网址安全检测。
当前为
// ==UserScript==
// @name 跳过新浪短网址安全检测
// @namespace http://greasyfork.icu/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)
})();