Neptun K Edition

Neptun K Épület Edition

  1. // ==UserScript==
  2. // @name Neptun K Edition
  3. // @namespace http://infocpp.ddns.me/
  4. // @version 0.00004
  5. // @description Neptun K Épület Edition
  6. // @author Dóka Balázs
  7. // @match https://*.neptun.bme.hu/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. document.getElementById('div_login_right_side').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/bme.png')";
  14. document.getElementById('tableMain').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/grad.png')";
  15. document.getElementById('td_Logo').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/logo.png')";
  16. document.getElementById('btnSubmit').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/button.png')";
  17. document.getElementById('td_LeftImage').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/left.png')";
  18. document.getElementById('td_LeftImage').style.backgroundPosition = "0px -3.7px";
  19. document.getElementById('lblModuleType').style.color = "#b44658";
  20. document.getElementById('lblInstitute').style.color = "grey";
  21. document.getElementById('lblVersion').innerHTML += "<br>K épület Edition © Dóka Balázs 2017";
  22. var elements = document.querySelectorAll('a');
  23. [].slice.call(elements).forEach(function(elem) {
  24. elem.style.color = '#b44658';
  25. });
  26. })();