// ==UserScript==
// @name Zolt Car Open link Works for others as well.
// @namespace http://your.homepage/
// @version 0.1
// @description enter something useful
// @author Riss
// @match https://www.google.com/evaluation/endor/mturk?*
// @require http://code.jquery.com/jquery-latest.min.js
// @grant none
// ==/UserScript==
var link = $('a').attr('href');
if (link.length > 1) {
window.open(link);
}
$('input[value="1"]').click();