ClearURLs
Discord Account
kraxen72
Plugin Description
please add a plugin that automatically removes tracking parameters from urls, for example the ?si= from spotify urls
Go into more detail...
when sending and receiving links port of vencord plugin: https://github.com/Vendicated/Vencord/tree/main/src/plugins/clearURLs
i checked the plugin channels on discord and issues here and couldn't find this request but it might be under a different name, so if that's the case, i'm sorry.
Request Agreement
- [X] I have made sure my plugin is possible and abides by the rules!
- [X] I did indeed check to make sure my plugin request is original!
until its made you could use a textreplace rule to do it
find: (https?://[^?#\s]+)(?.+?)(?=#|\s|$)
replace: $1
Regex: true
case insensitive: true
match unsent: true
match sent: whichever you want
match embeds: same as sent
(https?:\/\/[^?#\s]+)(\?.+?)(?=#|\s|$) replace: $1