Last active
August 15, 2016 13:09
-
-
Save KalleDK/e7923688a31c9c76af90b442069a258d to your computer and use it in GitHub Desktop.
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 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