Stop Tracking Me on Reddit

Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension.

What is Stop Tracking Me on Reddit?

Stop Tracking Me on Reddit is a Chrome extension developed by https://www.morningstarsecurity.com, and its main feature is "Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension.".

Extension Screenshots

screenshot
screenshot

Download Stop Tracking Me on Reddit Extension CRX File

Download Stop Tracking Me on Reddit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Reddit is tracking every outbound link you click. Even if you are not logged in, every news article, image, or website you visit from Reddit is being recorded. 

I made this because there wasn't any other Chrome extension that would block Reddit link tracking in August, 2016. Although you can turn off tracking in your user preferences, that is only useful if you are logged in. This extension disables tracking even when logged out.

Be aware that this only stops Reddit's outbound link tracking. This should be used in combination with other extensions that block other types of tracking.

* HTTP Everywhere - Always view Reddit on https://
* Privacy Badger - Block more trackers
* Adblock - Block even more trackers                    

Extension Basic Information

Name Stop Tracking Me on Reddit Stop Tracking Me on Reddit
ID cbebgcijnnddaopldijabckkahpbimgi
Official URL https://chromewebstore.google.com/detail/stop-tracking-me-on-reddi/cbebgcijnnddaopldijabckkahpbimgi
Description Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension.
File Size 6.91 KB
Installation Count 1,025
Current Version 1.0
Last Updated 2016-08-06
Publish Date 2016-08-06
Rating 5.00/5 Total 4 Ratings
Developer https://www.morningstarsecurity.com
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop Tracking Me on Reddit",
    "description": "Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension.",
    "version": "1.0",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "disable_outgoing_link_tracking.js"
            ]
        }
    ],
    "homepage_url": "http:\/\/www.morningstarsecurity.com\/",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon_128.png"
    },
    "permissions": [
        "http:\/\/*.reddit.com\/",
        "https:\/\/*.reddit.com\/"
    ]
}