Skip to content

Instantly share code, notes, and snippets.

@KalleDK
Last active August 15, 2016 13:09
Show Gist options
  • Save KalleDK/e7923688a31c9c76af90b442069a258d to your computer and use it in GitHub Desktop.
Save KalleDK/e7923688a31c9c76af90b442069a258d to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name BlackBoardOverlay
// @namespace http://k-moeller.dk/
// @updateURL https://gist.github.com/KalleDK/e7923688a31c9c76af90b442069a258d/raw/BlackBoardOverlay.user.js
// @downloadURL https://gist.github.com/KalleDK/e7923688a31c9c76af90b442069a258d/raw/BlackBoardOverlay.user.js
// @version 0.4
// @description Just don't show it
// @author Kalle R. Møller
// @match https://bb.au.dk/webapps/portal/execute/tabs/tabAction?tab_tab_group_id=_1_1*
// @grant none
// ==/UserScript==
(function() {
document.querySelector("#module\\:_303_1").style.display = 'none';
document.querySelector("#module\\:_183_1").style.display = 'none';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment