Sina Weibo external link

try to take over the world!

  1. // ==UserScript==
  2. // @name Sina Weibo external link
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Ccl
  7. // @match http://t.cn/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. var obj = document.querySelector("p.link");
  16. window.location.href= obj.innerText;
  17. })();