Adds a direct link to mahara on the bbb moodle.
// ==UserScript==
// @name Mahara Link
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Adds a direct link to mahara on the bbb moodle.
// @author com.xelaalex.directmahara
// @match https://moodle.bbbaden.ch/
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log("hey");
var li = document.createElement('li');
var a = document.createElement('a');
var linkText = document.createTextNode("Mahara");
a.title = "Mahara";
a.href = "https://moodle.bbbaden.ch/auth/mnet/jump.php?hostid=4";
a.appendChild(linkText);
li.appendChild(a);
document.querySelector(".navbar .nav").appendChild(li);
})();