css-injector-extension/README.md
2025-10-20 22:24:19 +02:00

20 lines
234 B
Markdown

# CSS Injector Extension
Examples:
**ChatGPT**
> Make thread messages wider
```css
@layer override {
:root {
--thread-content-max-width: 100% !important;
}
[class*="thread-"] {
max-width: 100% !important;
}
}
```