Advertisement
Guest User

SO ClearChat

a guest
Jun 25th, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. // ==UserScript==
  2. // @name SO ClearChat
  3. // @namespace com.onosendai
  4. // @version 0.3.1
  5. // @author OnoSendai
  6. // @match http://chat.stackexchange.com/rooms/11910/estouro-de-pilha
  7. // @grant none
  8. // @run-at document-start
  9. // ==/UserScript==
  10.  
  11. setTimeout(function(){
  12. console.log('Hooking up!');
  13.  
  14. $(function(){
  15. var r= $('<br/><a id="clsBtn" class="tag">Limpar Chat</a><a id="clsiBtn" class="tag">Remover Imagens/Videos</a>');
  16. $("#room-tags").append(r);
  17.  
  18. $("#clsBtn").click(function (e) {
  19. $("div.monologue").remove (); event.preventDefault();
  20. });
  21.  
  22. $("#clsiBtn").click(function (e) {
  23. $("div.ob-image > a").addClass('deleted').text('(Image removed)');
  24. $("div.ob-youtube > a").addClass('deleted').text('(Video removed)');
  25. });
  26. });
  27. }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement