CCPA Opt Out Assistant

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

O que é CCPA Opt Out Assistant?

CCPA Opt Out Assistant é uma extensão do Chrome desenvolvida por ccpaextension, e sua principal característica é "Notifies users when their data is sold and allows easier opt-outs".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão CCPA Opt Out Assistant

Baixe arquivos de extensão CCPA Opt Out Assistant no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome CCPA Opt Out Assistant CCPA Opt Out Assistant
ID fgfpflhjamdmecmcifdaepnpggedkfdh
URL Oficial https://chromewebstore.google.com/detail/ccpa-opt-out-assistant/fgfpflhjamdmecmcifdaepnpggedkfdh
Descrição Notifies users when their data is sold and allows easier opt-outs
Tamanho do Arquivo 33.33 KB
Contagem de Instalações 39
Versão Atual 1.0.3
Última Atualização 2021-07-21
Data de Publicação 2021-05-12
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor ccpaextension
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://cs.pomona.edu/~ebirrell/ccpa-optout-assistant/privacy.html
Idiomas Suportados 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"
            ]
        }
    ]
}