Last active
February 5, 2017 17:11
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment