NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GCloud Columns Width Fix // @namespace http://tampermonkey.net/ // @version 0.4 // @description Redesigns some GCloud Tables/Columns width to better visualise contents. // @author mkielar // @license MIT // @match https://console.cloud.google.com/cloud-build/* // @match https://console.cloud.google.com/storage/* // @run-at document-start // @grant GM_addStyle // @grant window.onurlchange // @run-at document-idle // ==/UserScript== (function() { 'use strict'; GM_addStyle (` .cfc-table-cell-truncation-or-extender-template { max-width: 1024px !important; } .name-cell { max-width: fit-content !important; } `) })();