修改H3C的eos日志字体为等宽字体
当前为
// ==UserScript==
// @name H3C eos日志格式
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 修改H3C的eos日志字体为等宽字体
// @author z404p
// @match *://eos.h3c.com/project/logs*
// @match *://eosts.h3c.com/project/logs*
// @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
// @grant GM_log
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var t = setInterval(function(){
console.log(1);
if(document.getElementById("loghtml")){
var elementStyle = document.getElementById("loghtml").style
elementStyle['font-family'] = 'Consolas, Cursive, Monospace'
clearInterval(t);
}
}, 100);
})();