t.cn直接跳转
// ==UserScript==
// @name f*ck 微博t.cn
// @namespace https://m.weibo.cn/
// @version 0.1
// @description t.cn直接跳转
// @author Yonjar
// @match http://t.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
location.href = document.querySelector('.link').textContent;
})();