您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Neptun K Épület Edition
// ==UserScript== // @name Neptun K Edition // @namespace http://infocpp.ddns.me/ // @version 0.00004 // @description Neptun K Épület Edition // @author Dóka Balázs // @match https://*.neptun.bme.hu/* // @grant none // ==/UserScript== (function() { 'use strict'; document.getElementById('div_login_right_side').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/bme.png')"; document.getElementById('tableMain').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/grad.png')"; document.getElementById('td_Logo').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/logo.png')"; document.getElementById('btnSubmit').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/button.png')"; document.getElementById('td_LeftImage').style.backgroundImage = "url('http://infocpp.ddns.me/c++/img/neptun/left.png')"; document.getElementById('td_LeftImage').style.backgroundPosition = "0px -3.7px"; document.getElementById('lblModuleType').style.color = "#b44658"; document.getElementById('lblInstitute').style.color = "grey"; document.getElementById('lblVersion').innerHTML += "<br>K épület Edition © Dóka Balázs 2017"; var elements = document.querySelectorAll('a'); [].slice.call(elements).forEach(function(elem) { elem.style.color = '#b44658'; }); })();