CMP Check

Easily determine if your CMP implementation is functional

Hvad er CMP Check?

CMP Check er en Chrome-udvidelse udviklet af https://twofutures.co, og dens hovedfunktion er "Easily determine if your CMP implementation is functional".

Udvidelsesskærmbilleder

screenshot

Download CMP Check-udvidelses-CRX-fil

Download CMP Check-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn CMP Check CMP Check
ID odemilkphklhfejgajeaohjcdfmmfjde
Officiel URL https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde
Beskrivelse Easily determine if your CMP implementation is functional
Filstørrelse 73.82 KB
Antal Installationer 1,243
Nuværende Version 0.0.2
Senest Opdateret 2020-09-21
Udgivelsesdato 2020-09-20
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler https://twofutures.co
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://twofutures.co/legal/privacy
Understøttede Sprog 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"
    ]
}