├── README.md ├── disable_outgoing_link_tracking.js ├── icon_128.png ├── icon_16.png ├── icon_48.png ├── manifest.json └── popup.html /README.md: -------------------------------------------------------------------------------- 1 | # Stop Tracking Me on Reddit 2 | 3 | 4 | ## How to get it 5 | 6 | ### Install in Chrome 7 | 8 | https://chrome.google.com/webstore/detail/stop-tracking-me-on-reddi/cbebgcijnnddaopldijabckkahpbimgi 9 | 10 | 11 | 12 | ## Short description 13 | 14 | Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension. 15 | 16 | 17 | ## Long description 18 | 19 | Reddit is tracking every out-going link you click. Even if you are not logged in, every news article, image, or website you visit from 20 | Reddit is being recorded. 21 | 22 | I made this because there wasn't any other Chrome extension that would block Reddit link tracking in August, 2016. 23 | If you are logged in, there is an option to disable link tracking in the Reddit preferences. If you are not logged in there is no way to disable tracking without using this extension. 24 | 25 | 26 | ## How to contribute 27 | 28 | ### Use this GitHub project 29 | 30 | 31 | ## Keywords 32 | 33 | Reddit, privacy, tracking, do not track. 34 | 35 | 36 | 37 | ## Technical Explanation 38 | 39 | Reddit uses link tracking by replacing outgoing links to https://out.reddit.com/. This is not obvious because when users hover the mouse over a link they see the final destination and not the tracking URL. 40 | 41 | This extension disables tracking by replacing link URLs to https://out.reddit.com/ with the real destination. 42 | 43 | -------------------------------------------------------------------------------- /disable_outgoing_link_tracking.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | Disable Reddit's ability to track which out-going links are clicked. 4 | 5 | Methods 6 | 1. Change expiration time of outbound links. 7 | 2. Replace outbound URL with the real URL. 8 | */ 9 | 10 | var anchors = document.getElementsByTagName("a"); 11 | 12 | for (i=0;i 2 | 7 | 8 | 9 | Stop Reddit Tracking Me 10 | 23 | 24 | 25 | 26 | 27 | 28 |

You are protected. Reddit is not tracking every outgoing link you click.

29 | 30 | 31 | 32 | 33 | --------------------------------------------------------------------------------