Baycloud Bouncer

An extension that fully implements the Do Not Track Consent API and blocks tracking unless consent has been given

Baycloud Bouncer란 무엇입니까?

Baycloud Bouncer은(는) http://baycloud.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that fully implements the Do Not Track Consent API and blocks tracking unless consent has been given"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Baycloud Bouncer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Bouncer is a browser extension that enforces Do Not Track and completely implements the W3C Do Not Track (DNT) recommendation. Servers can use the DNT Consent API to ask for your permission before using persistent cookies or other techniques to collect your activity across the web. If you do not give your explicit consent servers should not do this, and Bouncer will stop them if they try.
It not only sets the Do Not Track (DNT) signal, it also enforces your preference. If DNT is set persistent cookies will only be allowed to remain in your browser or device for a maximum of 2 hours, or a configurable duration.
Bouncer also reports on how servers respond to the DNT signal and gives you the ability to completely block content that you feel is ignoring your preference. 
It is intended that this will be a complete implementation of the API described in the Tracking Preference Expression document http://www.w3.org/TR/tracking-dnt/ specified by the W3C's Tracking Protection Working Group.                    

확장 프로그램 기본 정보

이름 Baycloud Bouncer Baycloud Bouncer
ID bplgfejjkplajgmkcbbgaeceamceohkc
공식 URL https://chrome.google.com/webstore/detail/baycloud-bouncer/bplgfejjkplajgmkcbbgaeceamceohkc
설명 An extension that fully implements the Do Not Track Consent API and blocks tracking unless consent has been given
파일 크기 5.46 MB
설치 횟수 197
현재 버전 4.0.12
최근 업데이트 2020-07-12
출시 날짜 2020-01-26
평점 5.00/5 총 2 개의 평점
개발자 http://baycloud.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://baycloud.com/
도움말 페이지 URL http://baycloud.com/bouncer
개인정보 보호 정책 페이지 URL https://baycloud.com/privacy
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Mike O'Neill",
    "background": {
        "scripts": [
            ".\/libs\/jquery-3.1.1.js",
            ".\/libs\/perfect-scrollbar.js",
            ".\/libs\/tooltipster.bundle.js",
            ".\/libs\/progressbar.js",
            ".\/js\/ConsentAPICommon.js",
            ".\/js\/ConsentAPIMain.js",
            ".\/js\/AdReporter_init.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": ".\/data\/OptedOutIcon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                ".\/js\/ConsentAPICommon.js",
                ".\/js\/ConsentAPIContent.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "__MSG_description__",
    "homepage_url": "https:\/\/baycloud.com",
    "icons": {
        "20": ".\/data\/Icon_NoTracking_20.png",
        "1280": ".\/data\/trackergate1280X800.png",
        "48": ".\/data\/closedgate48.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "default_locale": "en",
    "options_page": "options.html",
    "optional_permissions": [
        "notifications"
    ],
    "permissions": [
        "cookies",
        "storage",
        "activeTab",
        "webRequestBlocking",
        "webNavigation",
        "tabs",
        "webRequest",
        "https:\/\/baycloud.com\/",
        "https:\/\/baycloud.com:30323\/",
        "https:\/\/fast.fonts.net\/",
        "https:\/\/cloud.typography.com\/",
        "https:\/\/cookieq.com\/",
        ""
    ],
    "version": "4.0.12"
}