您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Expand the work area and site boxes
// ==UserScript== // @name OCMP Extract Multiple Dividends // @description Expand the work area and site boxes // @version 0.1 // @include https://mi-div.crowdcomputingsystems.com/mturk-web* // @author Cristo // @copyright 2012+, You // @namespace https://greasyfork.org/users/1973 // ==/UserScript== document.getElementsByClassName('center-box')[2].style.maxWidth='none'; var aBoxes = document.getElementsByClassName('nohighlight hasmenu extraction-content'); for (var f = 0; f < aBoxes.length; f++){ aBoxes[f].style.maxWidth='none'; aBoxes[f].style.width='auto'; }