Overseer Enhanced

The base script for Overseer enhancements.

ეს სკრიპტი არ უნდა იყოს პირდაპირ დაინსტალირებული. ეს ბიბლიოთეკაა, სხვა სკრიპტებისთვის უნდა ჩართეთ მეტა-დირექტივაში // @require https://update.greasyfork.org/scripts/5995/22511/Overseer%20Enhanced.js.

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         Overseer Enhanced
// @namespace    http://gigapause.com/
// @version      0.6
// @author       capableResistor
// @match        http://*.theoverseerproject.com/*
// @match        http://92.222.26.236/*
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
// ==/UserScript==

oeconsole();

function oeconsole (){
    if($('#strifeconsole').length > 0){
        return;
    } else {
        var mainbox = $('#banner');
        if (mainbox.length > 0){
            mainbox.after($('<div id="strifeconsole" style="background-color: #AAAAAA; overflow-y: scroll; border: 5px solid #c6c6c6; height: 75px;"></div>'));
            mainbox.after($('<div id="strifebuttons" style="background-color: #AAAAAA; border: 5px solid #c6c6c6; height: 35px;"></div>'));
        }
    }
}