Skip to content

Instantly share code, notes, and snippets.

@amit-g
Created November 18, 2014 00:25
Show Gist options
  • Save amit-g/a86edfb5c004d1f3b2b8 to your computer and use it in GitHub Desktop.
Save amit-g/a86edfb5c004d1f3b2b8 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name EnchantedLearningPuzzles
// @namespace http://www.enchantedlearning.com
// @include http://www.enchantedlearning.com/*/*/puzzles/*
// @version 1
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
// ==/UserScript==
(function () {
run();
function run() {
$("table:first").remove();
$("center:not(:has(table:first-child))").remove();
$("form").remove();
$("hr").remove();
$("br").remove();
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment