scrollBottom

Ir al último comentario de un vox con un clic.

  1. // ==UserScript==
  2. // @name scrollBottom
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Ir al último comentario de un vox con un clic.
  6. // @author Hhaz
  7. // @match http*://www.voxed.net/*
  8. // ==/UserScript==
  9.  
  10. $(".comment .image").click(function() {
  11. $("body, html").animate({
  12. scrollTop: $(document).height()
  13. }, 400);
  14.  
  15. });