Greasy Fork is available in English.

go out Mozest directly

點擊直接打開 Mozest 論壇未經驗證的外部連結

  1. // ==UserScript==
  2. // @author shyangs
  3. // @name go out Mozest directly
  4. // @description 點擊直接打開 Mozest 論壇未經驗證的外部連結
  5. // @namespace http://wiki.moztw.org/index.php/User:Shyangs
  6. // @version 1.0
  7. // @include http://mozest.com/outgoing.php?u=*&c=*
  8. // @include http://board.mozest.com/*thread*
  9. // @license MIT License; http://opensource.org/licenses/mit-license.php
  10. // ==/UserScript==
  11. var regex=/^http:\/\/mozest\.com\/outgoing\.php\?u=(\S+?)&c=.*/;//http://mozest.com/outgoing.php?u=(Base64)&c=
  12. var L=regex(location.href);//exec
  13. if(L!==null){//自動跳轉
  14. location.href=atob(L[1]);//atob() 是把 Base64 資料轉回字串。 https://developer.mozilla.org/en/DOM/window.atob
  15. }else{//連結處理
  16. var A=document.getElementsByTagName('a');
  17. var n=A.length;
  18. for(var i=0;i<n;i++){
  19. L=regex(A[i].href);
  20. if(L!==null){
  21. A[i].href=atob(L[1]);
  22. }
  23. }
  24. }