Skip to content

Instantly share code, notes, and snippets.

@pvalencia
Created September 7, 2009 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pvalencia/182443 to your computer and use it in GitHub Desktop.
Save pvalencia/182443 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Esconder nuevos en instituciones
// @namespace u-cursos
// @include https://www.u-cursos.cl/*
// ==/UserScript==
nuevos = document.getElementById('instituciones').getElementsByClassName('nuevo');
for(el in nuevos) {
el = nuevos[el];
el.style.display = 'none';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment