Greasy Fork 还支持 简体中文。

MTurk Max Job Window Height

Limit height of job window iFrame on MTurk.com

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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.02
// @grant       none
// ==/UserScript==

var hitIframe = document.getElementsByName('ExternalQuestionIFrame')[0];
if ( hitIframe ) { hitIframe.style.height='90%'; }

var hitIframe2 = document.getElementsByName('HTMLQuestionIFrame')[0];
if ( hitIframe2 ) { hitIframe2.style.height='90%'; }