OptMeowt

OptMeowt allows Web users to make use of their rights to opt out from the sale and sharing of personal data

OptMeowt क्या है?

OptMeowt https://privacytechlab.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "OptMeowt allows Web users to make use of their rights to opt out from the sale and sharing of personal data"।

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

screenshot
screenshot
screenshot

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

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

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

                        With the introduction of privacy regulations such as the California Consumer Privacy Act (CCPA) and the General Data Protection Regulation (GDPR) Web users have a right to limit the sale and sharing of their personal information. OptMeowt automates the process of sending opt out signals indicating the users' preferences upon visiting a website.

Note: We do not collect any data from you. Third parties will also not receive your data. The permissions OptMeowt is using are required for opting you out. You can learn more and view the source code at https://github.com/privacy-tech-lab/gpc-optmeowt.                    

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

नाम OptMeowt OptMeowt
ID hdbnkdbhglahihjdbodmfefogcjbpgbo
आधिकारिक URL https://chromewebstore.google.com/detail/optmeowt/hdbnkdbhglahihjdbodmfefogcjbpgbo
विवरण OptMeowt allows Web users to make use of their rights to opt out from the sale and sharing of personal data
फ़ाइल का आकार 3.02 MB
स्थापना संख्या 3,223
वर्तमान संस्करण 4.3.1
अंतिम अपडेट 2024-01-21
प्रकाशन तिथि 2020-10-05
रेटिंग 4.00/5 कुल 6 रेटिंग्स
डेवलपर https://privacytechlab.org
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://privacytechlab.org
सहायता पृष्ठ URL https://github.com/privacy-tech-lab/gpc-optmeowt
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OptMeowt",
    "author": "privacy-tech-lab",
    "version": "4.3.1",
    "description": "OptMeowt allows Web users to make use of their rights to opt out from the sale and sharing of personal data",
    "permissions": [
        "declarativeNetRequest",
        "webRequest",
        "webNavigation",
        "storage",
        "activeTab",
        "cookies",
        "tabs",
        "scripting"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "universal_GPC",
                "enabled": true,
                "path": "rules\/universal_gpc_rules.json"
            },
            {
                "id": "GPC_exceptions",
                "enabled": true,
                "path": "rules\/gpc_exceptions_rules.json"
            }
        ]
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "128": "assets\/face-icons\/icon128-face-circle.png"
    },
    "action": {
        "default_title": "OptMeowt",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "content-scripts\/injection\/gpc-dom.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "manifest_version": 3,
    "incognito": "spanning",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval'; object-src 'self'"
    }
}