CookieAudit

Check if a website respects your cookie preferences.

CookieAudit là gì?

CookieAudit là một tiện ích mở rộng Chrome được phát triển bởi CookieBlock Developers, và tính năng chính của nó là "Check if a website respects your cookie preferences.".

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

screenshot

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

Tải xuống các tệp mở rộng CookieAudit 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

                        CookieAudit will analyze a website while you navigate through it. It checks the consent popups' compliance with common Data Protection Regulations.

CookieAudit is built on CookieBlock. CookieBlock is a browser extension that is able to categorize cookies into different purposes ("Necessary", "Functionality", "Analytics" and "Advertising") using machine-learning technology. CookieAudit uses these capabilities to provide a developer, or really any curious mind, a tool for analyzing cookie-related behaviour of any website.

This extension has been built by members of the Information Security Group of the Computer Science Department at ETH Zürich, and was developed as part of the semester thesis "Extension for Auditing Consent Popups’ GDPR Compliance". 

Disclaimer: Please note that we are neither lawyers nor legal advisors. The information provided by CookieAudit and the linked website www.cookieaudit.app does not constitute, and is not intended to constitute, legal advice. Instead, all information, content and materials are for general informational purposes only.

* Source Code: https://github.com/Fredilein/CookieAudit

* CookieBlock: https://github.com/dibollinger/CookieBlock                    

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

Tên CookieAudit CookieAudit
ID hoheefgkoickpgelfgijnjnifcpkmbnc
URL Chính Thức https://chromewebstore.google.com/detail/cookieaudit/hoheefgkoickpgelfgijnjnifcpkmbnc
Mô tả Check if a website respects your cookie preferences.
Kích Thước Tệp 3.13 MB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2023-06-30
Ngày Phát Hành 2022-08-11
Nhà Phát Triển CookieBlock Developers
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.cookieaudit.app
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CookieAudit",
    "description": "Check if a website respects your cookie preferences.",
    "version": "0.3",
    "manifest_version": 3,
    "icons": {
        "16": ".\/logo\/icon16.png",
        "32": ".\/logo\/icon32.png",
        "128": ".\/logo\/icon128.png"
    },
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/consentNotice.js",
                "content\/banner.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "cookies",
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "",
        "*:\/\/*\/*"
    ]
}