HNU AutoCpp

Make it smiple to submit your code in HNU CG system.

// ==UserScript==
// @name         HNU AutoCpp
// @namespace    http://hnulib.xyz
// @version      0.2
// @description  Make it smiple to submit your code in HNU CG system.
// @author       Archen
// @match        http://202.197.98.89/assignment/*
// @icon         http://202.197.98.89/images/cgicon.png
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    var select = document.getElementById("languages");
    select.value = "c++";
})();