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

  • @coffee_poops@sh.itjust.works
    link
    fedilink
    English
    55 months ago

    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.

    • @coffee_poops@sh.itjust.works
      link
      fedilink
      English
      45 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);
      }