CookieAudit

Check if a website respects your cookie preferences.

什么是CookieAudit?

CookieAudit是由CookieBlock Developers开发的Chrome扩展程序,该扩展的主要功能是“Check if a website respects your cookie preferences.”。

扩展截图

screenshot

下载CookieAudit扩展crx文件

下载CookieAudit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 CookieAudit CookieAudit
ID hoheefgkoickpgelfgijnjnifcpkmbnc
官方URL https://chromewebstore.google.com/detail/cookieaudit/hoheefgkoickpgelfgijnjnifcpkmbnc
简介 Check if a website respects your cookie preferences.
文件大小 3.13 MB
安装次数 43
当前版本 0.3
更新时间 2023-06-30
上架时间 2022-08-11
开发者 CookieBlock Developers
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.cookieaudit.app
支持的语言 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": [
        "",
        "*:\/\/*\/*"
    ]
}