Much nicer solution can be used for any stackexchange sites::: First, go to stackoverflow.com(or any other stackexchange sites) then define this in your Javascript console(Press F12):
function minec(){
$.getJSON('/unicoin/rock',function(data) {
setTimeout(function(){
$.post('/unicoin/mine?rock='+data.rock,{fkey:StackExchange.options.user.fkey})
.done(function( data ) {
console.log(data);
});
},10000)});
setTimeout(minec,11000);
}
minec();
to see screenshot guide visit my answer
Thanks!