Skip to content

Instantly share code, notes, and snippets.

@Corgi
Created April 21, 2016 16:28
Show Gist options
  • Save Corgi/cfacf0cb1adf0fd680dc932631d873f2 to your computer and use it in GitHub Desktop.
Save Corgi/cfacf0cb1adf0fd680dc932631d873f2 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Aywas: Knowledge Base Staff Entry Stripper
// @include http://www.aywas.com/knowledge/tags*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
// ==/UserScript==
/*--- Very simple script that hides the gray staff-only articles from the Aywas Knowledge Base. Not very elegant, but does the job.*/
var staffTR = $("tr[bgcolor|='#DDD']");
staffTR.remove ();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment