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.
什么是Stop Tracking Me on Reddit?
Stop Tracking Me on Reddit是由https://www.morningstarsecurity.com开发的Chrome扩展程序,该扩展的主要功能是“Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension.”。
扩展截图
下载Stop Tracking Me on Reddit扩展crx文件
下载Stop Tracking Me on Reddit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Stop Tracking Me on Reddit |
ID | cbebgcijnnddaopldijabckkahpbimgi |
官方URL | https://chromewebstore.google.com/detail/stop-tracking-me-on-reddi/cbebgcijnnddaopldijabckkahpbimgi |
简介 | Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension. |
文件大小 | 6.91 KB |
安装次数 | 1,025 |
当前版本 | 1.0 |
更新时间 | 2016-08-06 |
上架时间 | 2016-08-06 |
评分 | 5.00/5 共4次评分 |
开发者 | https://www.morningstarsecurity.com |
付费类型 | free |
支持的语言 | 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\/" ] } |