NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Coursera hide banner // @namespace http://catness.org/* // @include https://www.coursera.org/* // @include http://www.coursera.org/* // @description Hides Coursera's specialization banner // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js // @require https://gist.github.com/raw/2625891/waitForKeyElements.js // @grant GM_addStyle // @version 1 // ==/UserScript== waitForKeyElements(".c-s12n-banner-container",actionFunction); function actionFunction (jNode) { jNode.remove(); }