Greasy Fork

Greasy Fork is available in English.

Wrap code and unset chat message display

Force code wrapping and unset chat message display

目前为 2025-05-19 提交的版本,查看 最新版本

// ==UserScript==
// @name         Wrap code and unset chat message display
// @description  Force code wrapping and unset chat message display
// @match        https://playground.allenai.org/*
// @version 0.0.1.20250519095525
// @namespace http://greasyfork.icu/users/1435046
// ==/UserScript==

(function() {
  const style = document.createElement('style');
  style.textContent = `
    .chat-message {
      display: unset;
    }

    code {
      white-space: pre-wrap;
    }
  `;
  document.head.appendChild(style);
})();