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 <[email protected]> (https://www.mzimmer.net) // @match https://myhomeworkapp.com/* // @grant none // ==/UserScript== (function() { 'use strict'; $("body").removeClass("hasAds"); $(".ads-col").hide(); })();