try to take over the world!
// ==UserScript==
// @name         Sina Weibo external link
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Ccl
// @match        http://t.cn/*
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    // Your code here...
    var obj = document.querySelector("p.link");
    window.location.href= obj.innerText;
})();