CCPA Opt Out Assistant

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

Qu'est-ce que CCPA Opt Out Assistant ?

CCPA Opt Out Assistant est une extension Chrome développée par ccpaextension, et sa fonction principale est "Notifies users when their data is sold and allows easier opt-outs".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension CCPA Opt Out Assistant

Téléchargez les fichiers d'extension CCPA Opt Out Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom CCPA Opt Out Assistant CCPA Opt Out Assistant
ID fgfpflhjamdmecmcifdaepnpggedkfdh
URL Officiel https://chromewebstore.google.com/detail/ccpa-opt-out-assistant/fgfpflhjamdmecmcifdaepnpggedkfdh
Description Notifies users when their data is sold and allows easier opt-outs
Taille du Fichier 33.33 KB
Nombre d'Installations 39
Version Actuelle 1.0.3
Dernière Mise à Jour 2021-07-21
Date de Publication 2021-05-12
Évaluation 5.00/5 Total 4 Évaluations
Développeur ccpaextension
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://cs.pomona.edu/~ebirrell/ccpa-optout-assistant/privacy.html
Langues Prises en Charge 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"
            ]
        }
    ]
}