您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Aliyun RDC prettier
// ==UserScript== // @name Aliyun RDC 云效美化 // @namespace http://fulicat.com // @version 1.0.1 // @description Aliyun RDC prettier // @author Jack.Chan ([email protected]) // @namespace http://fulicat.com // @url https://gf.qytechs.cn/zh-CN/scripts/432047-aliyun-rdc-%E4%BA%91%E6%95%88%E7%BE%8E%E5%8C%96 // @match https://rdc.aliyun.com/appcenter/list* // @match https://rdc.aliyun.com/appcenter/overview* // @match https://rdc.aliyun.com/ec/projects/*/apps/*/pipelines/* // @match https://rdc.aliyun.com/ec/projects/*/pipelines/* // @icon https://www.aliyun.com/favicon.ico // @grant none // ==/UserScript== (function() { 'use strict'; var cssRules = ` .page{ max-width: 1200px; margin-left: auto; margin-right: auto; } .page, #app-list, .overview-info-panel, .pagination{ font-size: 14px; } #app-list .table.table-hover.tb>colgroup>col + col + col + col ~ col, .overview-info-panel .table.table-hover.tb>colgroup>col + col + col + col ~ col{ display: none !important; } #app-list .table.table-hover.tb>colgroup>col + col, .overview-info-panel .table.table-hover.tb>colgroup>col + col{ width: 15% !important; } .aone-section .tab-extra { right: auto !important; left: 50% !important; } `; var style = document.createElement('style'); style.type = 'text/css'; style.innerText = cssRules; document.head.appendChild(style); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址