// ==UserScript==
// @name automail
// @include https://forum.root.cz/index.php?action=post*
// @version 1
// @grant none
// ==/UserScript==
var a = document.querySelector("input[name=email]");
if(a.value.length==0){
a.value=raso();
}
function raso(){
return ch(2,8)+"@"+ch(3,6)+".cz";}
function c(){
return String.fromCharCode(Math.random()*(122-97)+97);
}
function ch(a,b) {
b-=Math.random()*a;
var s=c();
while(b>0){
s+=c();
b-=1;
}
return s;
}
Neni zač