Skip to content

Instantly share code, notes, and snippets.

@michel-zimmer
Last active February 5, 2017 17:11
Show Gist options
  • Save michel-zimmer/c4b87214fac6dd9daf31d399a2707b91 to your computer and use it in GitHub Desktop.
Save michel-zimmer/c4b87214fac6dd9daf31d399a2707b91 to your computer and use it in GitHub Desktop.
Removes ads on myhomework.com and and allows display of third column
// ==UserScript==
// @name myHomework Ad removal
// @namespace https://www.mzimmer.net/
// @version 1.0.1
// @description Removes ads on myhomework.com and and allows display of third column
// @author Michel Zimmer <mzimmer@uni-bremen.de> (https://www.mzimmer.net)
// @match https://myhomeworkapp.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$("body").removeClass("hasAds");
$(".ads-col").hide();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment