Greasy Fork镜像 is available in English.

grok css

a

当前为 2025-07-12 提交的版本,查看 最新版本

// ==UserScript==
// @name         grok css
// @description  a
// @match        https://grok.com/*
// @version 0.0.1.20250712125935
// @namespace https://greasyforks.org/users/1435046
// ==/UserScript==

(function () {
  const style = document.createElement('style');
  style.textContent = `
* {
min-width: unset !important;
    gap: unset !important;
    padding-left: unset !important;
    padding-right: unset !important;
margin-left: unset !important;
    margin-right: unset !important;
}

.message-bubble {
background-color: blue;
}
  `;
  document.head.appendChild(style);
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。