您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Improve MTurk dashboard's layout/style.
当前为
- // ==UserScript==
- // @name MTurk Dashboard Style
- // @version 0.1.3
- // @description Improve MTurk dashboard's layout/style.
- // @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: 40%;
- }
- ${otherColumn} {
- left: 0;
- width: 60%;
- }
- ${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();
- }());