您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bring sanity back to the MTurk Dashboard.
当前为
// ==UserScript== // @name [MTurk Tools] Dashboard Style // @version 0.1.2 // @description Bring sanity back to the MTurk Dashboard. // @author parseHex // @namespace https://greasyfork.org/users/8394 // @match https://worker.mturk.com/dashboard* // @grant GM_addStyle // @run-at document-start // ==/UserScript== (function () { 'use strict'; const prefix = '#MainContent > .row'; const activityColumn = prefix + ' > .col-md-8'; const otherColumn = prefix + ' > .col-md-4'; const css = ` ${activityColumn} { right: 0; width: 33.33333%; } ${otherColumn} { left: 0; width: 66.66666%; } ${otherColumn} .row.m-b-xl { display: inline-block; width: 50%; float: left; position: relative; min-height: 1px; padding-left: 0.7142rem; padding-right: 0.7142rem; } `; function init() { GM_addStyle(css); } init(); }());