Improve the teriminal.
当前为
// ==UserScript==
// @name OS体验优化
// @namespace http://tampermonkey.net/
// @version 0.1.2
// @description Improve the teriminal.
// @description Disable the autocomplete of capche input.
// @author BearHuchao
// @match http://course.educg.net/
// @match http://course.educg.net/*
// @grant none
// ==/UserScript==
// ==UserScript==
// @name OS体验优化
// @namespace http://tampermonkey.net/
// @version 0.1.1
// @description Improve the teriminal.
// @description Disable the autocomplete of capche input.
// @author BearHuchao
// @match http://course.educg.net/
// @match http://course.educg.net/*
// @grant none
// ==/UserScript==
function actionFunction () {
'use strict';
var terminal = document.getElementById("terminado-container");
if(terminal !== null) {
terminal.style.width="100%";
}
var captcha = document.getElementById("captchaCode");
if(captcha !== null) {
captcha.autocomplete="off";
}
}
actionFunction();