DDoSolitary / Eye Protector for BUAA CourseGrading

// ==UserScript==
// @name         Eye Protector for BUAA CourseGrading
// @namespace    https://ddosolitary.org/
// @version      0.3
// @author       DDoSolitary
// @include      https://judge.e1.buaa.edu.cn/assignment/*
// @include      https://judge.e2.buaa.edu.cn/assignment/*
// @include      http://judge.buaa.edu.cn/assignment/*
// @include      https://judge.buaa.edu.cn/assignment/*
// @grant        none
// @run-at       document-end
// @license      MIT
// @updateURL    https://openuserjs.org/meta/DDoSolitary/Eye_Protector_for_BUAA_CourseGrading.meta.js
// ==/UserScript==

(function() {
	'use strict';
	var style = document.createElement('style');
	style.type = 'text/css';
	style.appendChild(document.createTextNode('form[name^=answerForm] *, td > small, .cloze, .option, #DIVMoreTest table table, body > table > tbody > tr:first-child > td { font-family: monospace !important; } p { tab-size: 4 !important; -moz-tab-size: 4 !important; }'));
	document.head.appendChild(style);

	$('body').unbind('copy');
})();