CCPA Opt Out Assistant

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

CCPA Opt Out Assistant क्या है?

CCPA Opt Out Assistant ccpaextension द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notifies users when their data is sold and allows easier opt-outs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CCPA Opt Out Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम CCPA Opt Out Assistant CCPA Opt Out Assistant
ID fgfpflhjamdmecmcifdaepnpggedkfdh
आधिकारिक URL https://chromewebstore.google.com/detail/ccpa-opt-out-assistant/fgfpflhjamdmecmcifdaepnpggedkfdh
विवरण Notifies users when their data is sold and allows easier opt-outs
फ़ाइल का आकार 33.33 KB
स्थापना संख्या 39
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2021-07-21
प्रकाशन तिथि 2021-05-12
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर ccpaextension
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://cs.pomona.edu/~ebirrell/ccpa-optout-assistant/privacy.html
समर्थित भाषाएँ 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"
            ]
        }
    ]
}