cbc382d1

NetMaster CBC-382D1 modem admin ekranı düzenlemesi

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

Advertisement:

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

Advertisement:

// ==UserScript==
// @name        cbc382d1
// @namespace   Seyfi.utils
// @description NetMaster CBC-382D1 modem admin ekranı düzenlemesi
// @include     http://192.168.100.1/*
// @version     1
// @grant       none
// ==/UserScript==

window.onload = null;
document.getElementById('container').style.display = 'block';
if (document.location.href.indexOf('EventLog') != -1)
  return;

var evtLog = document.createElement('li');
evtLog.innerHTML = 
  '<div class="box"><div class="box-outer"><div class="box-inner"><div class="box-final">' +
     '<a href="RgEventLog.asp"><span id="SubMenuLinkEventLog">Event Log</span></a>' +
  '</div></div></div></div>';
document.getElementById('navigation_bar').getElementsByTagName('ul')[0].appendChild(evtLog);