Hide BairesDev LLC

Hide BairesDev LLC offers

  1. // ==UserScript==
  2. // @name Hide BairesDev LLC
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Hide BairesDev LLC offers
  6. // @author You
  7. // @match https://co.computrabajo.com/trabajo-de*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=computrabajo.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. //Puedes agregar mas empresas aqui, copia y agrega el nombre aqui
  15. const empresasOcultas = [
  16. "BairesDev LLC",
  17. ];
  18.  
  19. function ocultarOfertas() {
  20. $('.box_offer').each(function() {
  21. const oferta = $(this);
  22. const texto = oferta.text().trim();
  23. empresasOcultas.forEach(empresa => {
  24. if (texto.includes(empresa)) {
  25. oferta.hide();
  26. }
  27. });
  28. });
  29. }
  30.  
  31. ocultarOfertas();
  32. })();