Quick thing I made using uBlock Origin with the help of ChatGPT, hides the useless AI generated description in weights.gg models while keeping the real one.
Hide AI Gen Descriptions by RoachKisser5
Details
AuthorRoachKisser5
LicenseNo License
Categoryweights.gg
Created
Updated
Size628 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This userstyle COMPLETELY BREAKS the Create section since it uses the same CSS elements, which is why I made this into a userstyle. Make sure to turn it OFF if you're using it!
Source code
/* ==UserStyle==
@name Hide AI Generated Description
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
/* weights.gg - Hide specific elements */
@-moz-document domain("weights.gg") {
/* Hide specific elements on weights.gg */
.css-ptond.whitespace-pre-line.text-sm.MuiTypography-body1.MuiTypography-root,
.dark\:bg-neutral-800.bg-gray-100.rounded-lg.py-2.px-4.gap-2.items-start.flex-col.flex,
.css-1tfndpc.ml-2.text-lg.MuiTypography-body2.MuiTypography-root {
display: none !important;
}
}