this post was submitted on 17 Dec 2023
50 points (98.1% liked)

F-Droid

7819 readers
4 users here now

F-Droid is an installable catalogue of FOSS (Free and Open Source Software) applications for the Android platform. The client makes it easy to browse, install, and keep track of updates on your device.

Website | GitLab | Mastodon

Matrix space | forum | IRC

founded 3 years ago
MODERATORS
 

App to help you remove tracking information before sharing links.

Features:

  • Untrack when sharing: You may share links to “Untracker” in the sharesheet to remove tracking information and copy or share again.
  • Select to untrack: You may select text and click “Untrack” in the selection toolbar to remove tracking information and replace.
  • Manage rules: You may control or add rules to remove tracking information with JavaScript code.

https://github.com/zhanghai/Untracker

all 7 comments
sorted by: hot top controversial new old
[–] [email protected] 14 points 8 months ago (2 children)

works at Google

makes anti-tracking software

Hmm, create the problem and sell the solution, well played...

Jk, doing something like this despite working at Google is freaking admirable, the guy even put a screenshot of "untracking" a YouTube URL in the project's README, lol.

Btw, I thought I'd seen this name before and he's the same guy behind the awesome Material Files!

[–] [email protected] 7 points 8 months ago

I think being paid well makes it easier to commit time towards FOSS projects, so a lot of contributors are from similar backgrounds

[–] [email protected] 7 points 8 months ago (1 children)

How does this compare to URLCheck?

[–] [email protected] 1 points 8 months ago

I'm was wondering about the same thing. It would also be awesome if they had some sort of URLCheck integration.

[–] [email protected] 5 points 8 months ago (1 children)

This could be really good if it could expand shortened links. Tiktok links have a creepy amount of tracking that can be easily bypassed by expanding the link and removing the tracking params.

[–] [email protected] 4 points 8 months ago

Turns out that you can!

Expand Tiktok URLs

if ($.matches(url, '(www\\.)?tiktok\\.com')) {
    return $.followRedirect(url);
}

Remove tracking params

if ($.matches(url, '(www\\.)?tiktok\\.com')) {
    return $.setEncodedQuery(url, null);
}