Overseer Enhanced

The base script for Overseer enhancements.

Acest script nu ar trebui instalat direct. Aceasta este o bibliotecă pentru alte scripturi care este inclusă prin directiva meta a // @require https://update.greatest.deepsurf.us/scripts/5995/22511/Overseer%20Enhanced.js

  1. // ==UserScript==
  2. // @name Overseer Enhanced
  3. // @namespace http://gigapause.com/
  4. // @version 0.6
  5. // @author capableResistor
  6. // @match http://*.theoverseerproject.com/*
  7. // @match http://92.222.26.236/*
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
  9. // ==/UserScript==
  10.  
  11. oeconsole();
  12.  
  13. function oeconsole (){
  14. if($('#strifeconsole').length > 0){
  15. return;
  16. } else {
  17. var mainbox = $('#banner');
  18. if (mainbox.length > 0){
  19. mainbox.after($('<div id="strifeconsole" style="background-color: #AAAAAA; overflow-y: scroll; border: 5px solid #c6c6c6; height: 75px;"></div>'));
  20. mainbox.after($('<div id="strifebuttons" style="background-color: #AAAAAA; border: 5px solid #c6c6c6; height: 35px;"></div>'));
  21. }
  22. }
  23. }