plugin-requests icon indicating copy to clipboard operation
plugin-requests copied to clipboard

ClearURLs

Open KraXen72 opened this issue 1 year ago • 5 comments

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!

KraXen72 avatar May 27 '24 15:05 KraXen72

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 Screenshot_20240527-131455

OasisVee avatar May 27 '24 17:05 OasisVee

(https?:\/\/[^?#\s]+)(\?.+?)(?=#|\s|$) replace: $1

OmegaSunkey avatar May 27 '24 18:05 OmegaSunkey