Who's Selling My Info?

Detects whether websites have a 'Do Not Sell My Personal Information' link mandated by CCPA, and makes them easily accessible.

什么是Who's Selling My Info??

Who's Selling My Info?是由2br-2b开发的Chrome扩展程序,该扩展的主要功能是“Detects whether websites have a 'Do Not Sell My Personal Information' link mandated by CCPA, and makes them easily accessible.”。

扩展截图

screenshot
screenshot
screenshot

下载Who's Selling My Info?扩展crx文件

下载Who's Selling My Info?扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is an open-source extension created by swow2015, swoconnor2, and 2br-2b. A link to the Github repo is https://github.com/swow2015/Who-sSellingMyInfo-.

Who's Selling My Info?

Firefox and Chromium Extension to detect pages with a California Consumer Privacy Act-mandated "Do Not Sell My Personal Information" link and notify users with a banner through which they can access the opt-out.

Background

What do Hulu, Walmart, and CNN have in common? You may not have noticed, but there's a new link on their website, along with 35.8% of the top 500 US websites.

As of July 2020, the California Consumer Privacy Act mandates that websites which sell users' information post a link on their page allowing them to opt-out from this practice. The act requires this link to be "clear and conspicuous" as well as to be specifically titled "Do Not Sell My Personal Information"; however, a study revealed that most of these links are anything but. Companies use every trick in the book to hide the opt-out link in places that it won't be seen so that they can continue to sell users' information without them knowing it's even happening, let alone that there is a way to opt out.

The reason this law is so impactful is that it expands the definition of "personal information" beyond the scope of what's been considered as such in the past. While previous privacy laws like the GDPR focused on information identifying users by name, in the age of big data, companies don't need your name in order to identify who you are. As data brokers hold profiles containing thousands of pieces of information on nearly every US consumer, it takes as little as an identifying number stored in a cookie on your computer, your IP address, or even your browsing history for them to match your activity to a profile with your name and other personal information.

In an increasingly ubiquitous manner, such information is used to track more and more of our activity across the web, potentially revealing sensitive information about us like health conditions, sexual orientation, and political beliefs. An alarming number of websites sell the ability to track such activity to third parties without our knowledge or control. And once sold, it's impossible to say whose hands our information will eventually end up in, and how it will be used.

The CCPA attempts to address these trends by expanding the definition of what information is considered personally identifiable to include such tracking practices. Thus, since the law's passage, many website have added links for California users to opt-out of their information being sold. However, a study has found that the law's actual impact has been almost entirely mitigated by the way these links have been implemented. Most websites have hidden these links away in locations that almost no users ever see, let alone interact with.

This extension tries to correct that course and let you see the web the way the CCPA intended: with a clear and conspicuous notification when your information is being sold, along with the ability to opt out.

The Extension

The extension will search any web-pages you visit for the presence of the words "Do Not Sell" or "Don't Sell", which represents almost every CCPA opt-out link and are very rarely used in other contexts on webpages. If such words are found, it means that the website is selling your personal information! The extension will display a red notification in the lower-left corner in these cases, which when clicked will directly take you to the site's opt-out page as if you clicked the link itself. You can also dismiss the notification by clicking the "x" button.

Limitations

This extension only detects websites that display a CCPA opt-out in the first place. Since many companies only display such a link to users with a California IP address, the extension will not be as effective for non-California residents. Furthermore, only 35.8% of the top 500 websites implemented a CCPA opt-out link after the law took effect. The number that actually sell user information is likely much higher, meaning that not all websites which sell your information will be detected by this extension. A few websites, instead of an opt-out link, display a CCPA notice in a banner, which may not be detected by this extension. The extension may also generate false positives if a website has the words "Do Not Sell" in some other context, like when viewing this ReadMe. The extension won't know if you've exercised your opt-out rights, and will keep saying that the page is selling your information based on the fact that it contains an opt-out link. Finally, while this extension can help let you know when your information is being sold, many websites make it difficult or impossible to actually complete their opt-out process. Intentionally difficult designs are common, and many opt-out requests don't actually stop your information from being sold. As such, it's important to take further steps to protect your privacy to the extent possible.

Notice: this extension, while featuring screenshots of different websites, is not endorsed by or affiliated with Walmart, Target, or Hulu, or any related companies! These screenshots are simply used for demonstration purposes.                    

扩展基本信息

名称 Who's Selling My Info? Who's Selling My Info?
ID fajcnenaofjjodeiglclbihlinbiccek
官方URL https://chrome.google.com/webstore/detail/whos-selling-my-info/fajcnenaofjjodeiglclbihlinbiccek
简介 Detects whether websites have a 'Do Not Sell My Personal Information' link mandated by CCPA, and makes them easily accessible.
文件大小 40.95 KB
安装次数 50
当前版本 1.0
更新时间 2020-11-24
上架时间 2020-11-24
评分 4.00/5 共1次评分
开发者 2br-2b
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/swow2015/Who-sSellingMyInfo-
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Who's Selling My Info?",
    "author": "Sean O'Connor",
    "version": "1.0",
    "description": "Detects whether websites have a 'Do Not Sell My Personal Information' link mandated by CCPA, and makes them easily accessible.",
    "homepage_url": "https:\/\/github.com\/swow2015\/Who-sSellingMyInfo-",
    "icons": {
        "48": "icons\/icon_active.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon_inactive.png",
        "default_title": "Who's Selling My Info?"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "check_for_link.js",
                "click_scripts.js"
            ],
            "css": [
                "popup.css"
            ]
        }
    ]
}