Consent-O-Matic

Automatic handling of GDPR consent forms

Consent-O-Maticคืออะไร?

Consent-O-Matic เป็นส่วนขยายของ Chrome ที่พัฒนาโดย janusbk และคุณลักษณะหลักของมันคือ "Automatic handling of GDPR consent forms"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Consent-O-Matic

ดาวน์โหลดไฟล์ส่วนขยาย Consent-O-Matic ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Cookie pop-ups are designed to be confusing and make you 'agree' to be tracked. This add-on automatically answers consent pop-ups for you, so you can't be manipulated. Set your preferences once, and let the technology do the rest!

This add-on is built and maintained by workers at Aarhus University in Denmark. We are privacy researchers that got tired of seeing how companies violate the EU's General Data Protection Regulation (GDPR). Because the organisations that enforce the GDPR do not have enough resources, we built this add-on to help them out. 

We looked at 680 pop-ups and combined their data processing purposes into 5 categories that you can toggle on or off. Sometimes our categories don't perfectly match those on the website, so then we will choose the more privacy preserving option.

The first version of this add-on works with 4 popular pop-ups: Cookiebot, OneTrust, QuantCast, and TrustArc. The add-on is open source, so anyone can add additional pop-ups through our template system: https://github.com/cavi-au/Consent-O-Matic.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Consent-O-Matic Consent-O-Matic
ID mdjildafknihdffpkfmmpnpoiajfjnjd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/consent-o-matic/mdjildafknihdffpkfmmpnpoiajfjnjd
คำอธิบาย Automatic handling of GDPR consent forms
ขนาดไฟล์ 159 KB
จำนวนการติดตั้ง 129,114
เวอร์ชันปัจจุบัน 1.0.12
อัปเดตครั้งล่าสุด 2023-02-23
วันที่เผยแพร่ 2020-02-27
คะแนน 4.05/5 รวมทั้งหมด 113 คะแนน
ผู้พัฒนา janusbk
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://consentomatic.au.dk/
URL หน้าช่วยเหลือ https://github.com/cavi-au/Consent-O-Matic
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Consent-O-Matic",
    "description": "Automatic handling of GDPR consent forms",
    "author": "CAVI - Aarhus University",
    "homepage_url": "https:\/\/github.com\/cavi-au\/Consent-O-Matic",
    "version": "1.0.12",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "Consent-O-Matic",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "GDPRConfig.js",
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "auto.html"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "Tools.js",
                "GDPRConfig.js",
                "language.js",
                "Matcher.js",
                "Consent.js",
                "Action.js",
                "Detector.js",
                "CMP.js",
                "ConsentEngine.js",
                "AutomaticDetection.js",
                "contentScript.js"
            ],
            "css": [
                "content.css"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "48": "icon_48.png",
        "96": "icon_96.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "62.0"
        }
    }
}