Baycloud Bouncer

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

Baycloud Bouncer là gì?

Baycloud Bouncer là một tiện ích mở rộng Chrome được phát triển bởi http://baycloud.com, và tính năng chính của nó là "An extension that fully implements the Do Not Track Consent API and blocks tracking unless consent has been given".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Baycloud Bouncer

Tải xuống các tệp mở rộng Baycloud Bouncer 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

                        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.                    

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

Tên Baycloud Bouncer Baycloud Bouncer
ID bplgfejjkplajgmkcbbgaeceamceohkc
URL Chính Thức https://chrome.google.com/webstore/detail/baycloud-bouncer/bplgfejjkplajgmkcbbgaeceamceohkc
Mô tả An extension that fully implements the Do Not Track Consent API and blocks tracking unless consent has been given
Kích Thước Tệp 5.46 MB
Số Lần Cài Đặt 197
Phiên Bản Hiện Tại 4.0.12
Cập Nhật Lần Cuối 2020-07-12
Ngày Phát Hành 2020-01-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển http://baycloud.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://baycloud.com/
URL Trang Trợ Giúp http://baycloud.com/bouncer
URL Trang Chính Sách Bảo Mật https://baycloud.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
}