CMP Check

Easily determine if your CMP implementation is functional

Was ist CMP Check?

CMP Check ist eine Chrome-Erweiterung, die von https://twofutures.co entwickelt wurde, und ihr Hauptmerkmal ist "Easily determine if your CMP implementation is functional".

Erweiterungsscreenshots

screenshot

CMP Check-Erweiterungs-CRX-Datei herunterladen

Laden Sie CMP Check-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        CMP Check allows you to determine whether your TCF v2.0 and/or CCPA CMP is functioning correctly, and communicating with Google Publisher Tags and Prebid correctly.                    

Grundlegende Informationen zur Erweiterung

Name CMP Check CMP Check
ID odemilkphklhfejgajeaohjcdfmmfjde
Offizielle URL https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde
Beschreibung Easily determine if your CMP implementation is functional
Dateigröße 73.82 KB
Installationsanzahl 1,243
Aktuelle Version 0.0.2
Letztes Update 2020-09-21
Veröffentlichungsdatum 2020-09-20
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://twofutures.co
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://twofutures.co/legal/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CMP Check",
    "version": "0.0.2",
    "description": "Easily determine if your CMP implementation is functional",
    "manifest_version": 2,
    "icons": {
        "16": "icon-transparent-16.png",
        "48": "icon-transparent-48.png",
        "128": "icon-transparent-128.png"
    },
    "permissions": [
        "cookies",
        "tabs",
        "webRequest",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "injectedScript.js"
    ]
}