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 là gì?

Stop Tracking Me on Reddit là một tiện ích mở rộng Chrome được phát triển bởi https://www.morningstarsecurity.com, và tính năng chính của nó là "Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stop Tracking Me on Reddit

Tải xuống các tệp mở rộng Stop Tracking Me on Reddit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stop Tracking Me on Reddit Stop Tracking Me on Reddit
ID cbebgcijnnddaopldijabckkahpbimgi
URL Chính Thức https://chromewebstore.google.com/detail/stop-tracking-me-on-reddi/cbebgcijnnddaopldijabckkahpbimgi
Mô tả Reddit tracks every outbound link you click, even if you are logged out. Protect yourself from tracking with this extension.
Kích Thước Tệp 6.91 KB
Số Lần Cài Đặt 1,025
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-08-06
Ngày Phát Hành 2016-08-06
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://www.morningstarsecurity.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}