Greasy Fork

MTurk Max Job Window Height

Limit height of job window iFrame on MTurk.com

当前为 2015-02-10 提交的版本,查看 最新版本

// ==UserScript==
// @name        MTurk Max Job Window Height
// @author      locke2002
// @namespace   
// @description Limit height of job window iFrame on MTurk.com
// @include     *.mturk.com/*
// @version     1.01
// @grant       none
// ==/UserScript==

var hitIframe = document.getElementsByName('ExternalQuestionIFrame')[0];

if ( hitIframe )
{
	hitIframe.style.height='90%';
}