CCPA Opt Out Assistant

Notifies users when their data is sold and allows easier opt-outs

CCPA Opt Out Assistant là gì?

CCPA Opt Out Assistant là một tiện ích mở rộng Chrome được phát triển bởi ccpaextension, và tính năng chính của nó là "Notifies users when their data is sold and allows easier opt-outs".

Ả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 CCPA Opt Out Assistant

Tải xuống các tệp mở rộng CCPA Opt Out Assistant 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

                        In the modern world, your personal data is often collected and sold by companies, even when you don’t realize it. This extension is here to help. 
 
With the California Consumer Privacy Act (CCPA), California residents have the right to opt out of the sale of their personal data for any and all websites that sell it. But it can be difficult to determine which websites actually sell this data, and how to opt out on those that do. 
 
With this extension, you are automatically notified every time you access a site that sells your data. You can exercise your rights and opt out through our popup, or whitelist a site and stop receiving notifications for it. Either way, you stay informed about how your data is being used, and are enabled to exercise your rights.
 
Our permissions are used to store information about which sites you no longer wish to receive notifications for. We do not and will never collect any personally identifying information from any of our users.                    

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

Tên CCPA Opt Out Assistant CCPA Opt Out Assistant
ID fgfpflhjamdmecmcifdaepnpggedkfdh
URL Chính Thức https://chromewebstore.google.com/detail/ccpa-opt-out-assistant/fgfpflhjamdmecmcifdaepnpggedkfdh
Mô tả Notifies users when their data is sold and allows easier opt-outs
Kích Thước Tệp 33.33 KB
Số Lần Cài Đặt 39
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2021-07-21
Ngày Phát Hành 2021-05-12
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển ccpaextension
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://cs.pomona.edu/~ebirrell/ccpa-optout-assistant/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CCPA Opt Out Assistant",
    "author": "Sean O'Connor and Aden Siebel",
    "version": "1.0.3",
    "description": "Notifies users when their data is sold and allows easier opt-outs",
    "icons": {
        "48": "icons\/icon_active.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon_inactive.png",
        "default_title": "CCPA Opt Out Assistant",
        "default_popup": "notification.html"
    },
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "check_for_link.js"
            ]
        }
    ]
}