OptMeowt

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

OptMeowt là gì?

OptMeowt là một tiện ích mở rộng Chrome được phát triển bởi https://privacytechlab.org, và tính năng chính của nó là "OptMeowt allows Web users to make use of their rights to opt out from the sale and sharing of personal data".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng OptMeowt

Tải xuống các tệp mở rộng OptMeowt dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên OptMeowt OptMeowt
ID hdbnkdbhglahihjdbodmfefogcjbpgbo
URL Chính Thức https://chromewebstore.google.com/detail/optmeowt/hdbnkdbhglahihjdbodmfefogcjbpgbo
Mô tả OptMeowt allows Web users to make use of their rights to opt out from the sale and sharing of personal data
Kích Thước Tệp 3.02 MB
Số Lần Cài Đặt 3,223
Phiên Bản Hiện Tại 4.3.1
Cập Nhật Lần Cuối 2024-01-21
Ngày Phát Hành 2020-10-05
Đánh Giá 4.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://privacytechlab.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://privacytechlab.org
URL Trang Trợ Giúp https://github.com/privacy-tech-lab/gpc-optmeowt
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}