this post was submitted on 23 Mar 2025
93 points (100.0% liked)

Canada

9439 readers
1244 users here now

What's going on Canada?



Related Communities


🍁 Meta


🗺️ Provinces / Territories


🏙️ Cities / Local Communities

Sorted alphabetically by city name.


🏒 SportsHockey

Football (NFL): incomplete

Football (CFL): incomplete

Baseball

Basketball

Soccer


💻 Schools / Universities

Sorted by province, then by total full-time enrolment.


💵 Finance, Shopping, Sales


🗣️ Politics


🍁 Social / Culture


Rules

  1. Keep the original title when submitting an article. You can put your own commentary in the body of the post or in the comment section.

  2. Election Interference / Misinformation

Reminder that the rules for lemmy.ca also apply here. See the sidebar on the homepage: lemmy.ca


founded 4 years ago
MODERATORS
93
Elbows Up eh! (www.youtube.com)
submitted 2 weeks ago* (last edited 2 weeks ago) by Lemmyoutofhere@lemmy.ca to c/canada@lemmy.ca
you are viewing a single comment's thread
view the rest of the comments
[–] HonoredMule@lemmy.ca 1 points 2 weeks ago

You can use the shorter .be url -- just only copy up to (not including) the question mark.

If you're disinclined to endure any inconvenience, you can put this in a userscript to strip the tracking code automatically (including what the copy button saves):

const listener = new MutationObserver((mutations, observer) => {
    // query blindly until found - it's never listed as an addedNode
    const field = document.querySelector("#share-url");
    if(!field) return;
    field.value = field.value.split("?")[0];
    // SPA and navigation events/functions not catching anything, so just listen forever :/
    // listener.disconnect();
});
listener.observe(document.body, {childList: true, subtree: true});