GameFAQs Old-Style left of post.

Old-Style left of post.

  1. // ==UserScript==
  2. // @name GameFAQs Old-Style left of post.
  3. // @Author Judgmenl
  4. // @namespace Kraust
  5. // @version 1.2.0
  6. // @description Old-Style left of post.
  7. // @author Kraust
  8. // @match http://*.gamefaqs.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. $(".msg_below").css("position", "relative");
  13. $(".msg_below").each(function(index){
  14. $(this).parent().prev().append($(this).detach());
  15. });
  16.  
  17. $(".message_num").each(function(index){
  18. $(this).parent().append($(this).detach());
  19. });
  20.  
  21. $(".edited").css("display", "block");
  22. $(".action_after").hide();
  23. $(".options").css("float", "none");