Speedport Hybrid Engineer

fügt einen Link ins Hauptmenü des Speedport Hybrid ein um das Engineer Menü aufzurufen

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Speedport Hybrid Engineer
// @namespace    http://www.router-faq.de/index.php?id=spinfo&hws=speedporthybrid#speedporthybrid
// @version      0.1
// @description  fügt einen Link ins Hauptmenü des Speedport Hybrid ein um das Engineer Menü aufzurufen
// @author       Tilo Brandenburger
// @match        http://speedport.ip/html/content/*
// @match        http://192.168.2.1/html/content/*
// @grant        none
// ==/UserScript==
/* jshint -W097 */
'use strict';

var div = document.getElementById("mn_05");
if (div) {
    div.className = "";
    div.removeAttribute('id');
    div.innerHTML = "<a href='../../../engineer/html/dsl.html?lang=de' class='mainnav_middle' id='mn_05'><img src='../../../images/icons/settings_30x30.png' width='30' height='30' alt='Engineer'><span>Engineer</span></a>";
}