Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         KarmaWhoRemover
  3. // @namespace    http://google.es
  4. // @version      0.1
  5. // @description  Para eliminar los comentarios de cualquier usuario que sólo quiere karma.
  6. // @author       Penitencia
  7. // @match        https://www.meneame.net/story/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. comentarios = document.getElementsByClassName("comment-text");
  12.  
  13. if(comentarios != null && comentarios != "undefined") {
  14.     for(i = 0; i < comentarios.length; i++) {
  15.         comentario = comentarios[i].innerHTML;
  16.         icono = false;
  17.  
  18.         if (comentario.indexOf("troll.png")!= -1) {
  19.             icono = true;
  20.         }
  21.         if(icono) {
  22.             comentarios[i].innerHTML = "¡Quiero karma!</br>";
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement