HF View Last Post on 'Your Posts'

Add a View Last Post link to the 'Your Posts' page.

  1. // ==UserScript==
  2. // @name HF View Last Post on 'Your Posts'
  3. // @description Add a View Last Post link to the 'Your Posts' page.
  4. // @include *hackforums.net/search.php*
  5. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
  6. // @version 1
  7. // @namespace https://gf.qytechs.cn/users/24272
  8. // ==/UserScript==
  9. var pageText = $('body').html().toString();
  10.  
  11. var foundText = pageText.indexOf("Last Post");
  12.  
  13. if (foundText == -1) {
  14. $(".trow1 a[href*='showthread.php?tid=']").each(function(e) {
  15. uid = $(this).attr("href");
  16.  
  17.  
  18.  
  19.  
  20. if (uid.indexOf('pid') > -1) {} else {
  21.  
  22. $(this).after("<a href=" + uid + "&action=lastpost><b><u>View Last Post</u></b></a>");
  23. $(this).after(" || ");
  24. }
  25.  
  26. })
  27.  
  28. $(".trow2 a[href*='showthread.php?tid=']").each(function(e) {
  29. uid = $(this).attr("href");
  30.  
  31. if (uid.indexOf('pid') > -1) {} else {
  32.  
  33. $(this).after("<a href=" + uid + "&action=lastpost><b><u>View Last Post</u></b></a>");
  34. $(this).after(" || ");
  35. }
  36.  
  37. })
  38. }

QingJ © 2025

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