// ==UserScript== // @include http://forum.antichat.ru/* // @description submit comment by ctrl+enter // ==/UserScript== document.onkeydown = function(e) { e = e || window.event; return (e.ctrlKey && e.keyCode == 13)? document.forms[1].submit() : false; }