yy-auto-redir

redirect yy security warning page

当前为 2016-03-24 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name yy-auto-redir
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description redirect yy security warning page
  6. // @author LYC
  7. // @include http://redir.yy.duowan.com/warning.php?url=*
  8. // @grant none
  9. // ==/UserScript==
  10. /* jshint -W097 */
  11.  
  12. document.location.href = unescape(document.location.href.match("url=(.*?)$")[1]);