Post Enter - Voxed

Comentar con la tecla Enter.

  1. // ==UserScript==
  2. // @name Post Enter - Voxed
  3. // @namespace https://voxed.net
  4. // @version 1.0
  5. // @description Comentar con la tecla Enter.
  6. // @match voxed.net/*
  7. // @copyright 2016, Hhaz.
  8. // @author Hhaz
  9. // ==/UserScript==
  10.  
  11. $("#content").keypress(function(e){
  12. if ( e.which == 13 && e.shiftKey ){
  13. }else if(e.which == 13){
  14. $("#comBoton").click();
  15. }
  16. });
  17.  
  18. $(document).ready(function(){
  19. $(".control").click(function(){
  20. $(this).css("content", "url(http://i.imgur.com/UPhSha9.png)");
  21. $(this).css("width", "105px");
  22. $(this).css("height", "52px");
  23. });
  24. });