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.
Qu'est-ce que Stop Tracking Me on Reddit ?
Stop Tracking Me on Reddit est une extension Chrome développée par https://www.morningstarsecurity.com, et sa fonction principale est "Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Stop Tracking Me on Reddit
Téléchargez les fichiers d'extension Stop Tracking Me on Reddit au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Stop Tracking Me on Reddit |
ID | cbebgcijnnddaopldijabckkahpbimgi |
URL Officiel | 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. |
Taille du Fichier | 6.91 KB |
Nombre d'Installations | 1,025 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-08-06 |
Date de Publication | 2016-08-06 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | https://www.morningstarsecurity.com |
Type de Paiement | free |
Langues Prises en Charge | 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\/" ] } |