您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A simple theme for MicroWork Cloud
// ==UserScript== // @name MicroWork Cloud Advanced // @namespace https://github.com/jorgebeserra // @version 0.0.10 // @description A simple theme for MicroWork Cloud // @author Jorge Souza // @match https://microworkcloud.com.br/cloud/* // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle ( ` div.k-widget { width: 95% !important; height: 95% !important; } .k-grid-header-wrap > table, .k-grid-content > table { border-right: 1px solid #ccc; } div.k-content:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > kendo-grid:nth-child(1) { height: 750px !important; } div.ng-pristine > div:nth-child(6) > div:nth-child(1) > kendo-grid:nth-child(1) { height: 450px !important; } kendo-grid.k-widget { height: 550px !important; } ` ); })();