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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "OptMeowt allows Web users to make use of their rights to opt out from the sale and sharing of personal data"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

OptMeowt 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
    }
}