Skip to content

Instantly share code, notes, and snippets.

@Micorksen
Last active November 5, 2024 23:47
Show Gist options
  • Save Micorksen/d8008fe6be35d718c531dc2d01da6567 to your computer and use it in GitHub Desktop.
Save Micorksen/d8008fe6be35d718c531dc2d01da6567 to your computer and use it in GitHub Desktop.
Remove the stupid limit of 'About me' on Discord's web app.
// ==UserScript==
// @name Discord Bio
// @namespace https://micorksen.eu
// @version 1.0
// @description Remove the stupid limit of 'About me' on Discord's web app.
// @author Micorksen
// @match https://discord.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=discord.com
// @require https://code.jquery.com/jquery-3.6.3.slim.min.js
// @grant none
// ==/UserScript==
'use strict'
$(function () {
let c = () => {
return $(this)
.find('.lineClamp2Plus-2SCQmH')
.css('-webkit-line-clamp', '')
}
[
'div.layer-1Ixpg3',
'div.layer-2aCOJ3',
'div.chat-2ZfjoI'
].forEach(e => { $(document).on('DOMNodeInserted', e, c) })
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment