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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Stop Tracking Me on Reddit 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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\/"
    ]
}