// ==UserScript==
// @name Open Zeasame
// @description Sends Zoltar links to a second window.
// @include https://www.google.com/evaluation/endor*
// @include https://www.mturk.com/mturk*
// @version 0.1
// @grant GM_log
// @require https://code.jquery.com/jquery-1.12.0.min.js
// ==/UserScript==
function receiveMessage(event) {
console.log(event);
if (event.data.search("!!!!!") > -1) {
var openData = event.data.split('!!!!!');
window.open(openData[1], openData[0], 'toolbar=1,location=1,menubar=1,scrollbars=1');
}
}
if ($("td:contains('Let someone else do it')").length) {
window.addEventListener("message", receiveMessage, false);
} else {
setTimeout(function(){
var web_link = $('a.ng-binding');
window.parent.postMessage('zolt_window!!!!!' + web_link[0].href, 'https://www.mturk.com');
$('input[id="input_0"]').focus();
}, 600);
}