Yahoo!ジオシティーズ to archive.org

geocities.jp -> RedirectURL or archive.org

  1. // ==UserScript==
  2. // @name Yahoo!ジオシティーズ to archive.org
  3. // @namespace https://gf.qytechs.cn/users/299154-rnnqq
  4. // @version 0.3
  5. // @description geocities.jp -> RedirectURL or archive.org
  6. // @author rnnqq
  7. // @include http://*.geocities.jp/*
  8. // @include http://*.geocities.co.jp/*
  9. // @include https://*.geocities.jp/*
  10. // @include https://*.geocities.co.jp/*
  11. // @exclude https://web.archive.org/*
  12. // @exclude http://www.geocities.jp/
  13. // @exclude http://www.geocities.co.jp/
  14. // @exclude https://shopping.geocities.jp/*
  15. // @grant none
  16. // ==/UserScript==
  17.  
  18. (function() {
  19. if(document.querySelector('.userpageRedirectUrl')){
  20. var RedirectURL = document.getElementsByClassName('userpageRedirectUrl');
  21. location.href = RedirectURL[0].textContent;
  22. }
  23. else {
  24. var archiveURL = "https://web.archive.org/web/"+location.href;
  25. location.href = archiveURL;
  26. }
  27. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址