CMP Check

Easily determine if your CMP implementation is functional

Apa itu CMP Check?

CMP Check adalah ekstensi Chrome yang dikembangkan oleh https://twofutures.co, dan fitur utamanya adalah "Easily determine if your CMP implementation is functional".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi CMP Check

Unduh file ekstensi CMP Check dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama CMP Check CMP Check
ID odemilkphklhfejgajeaohjcdfmmfjde
URL Resmi https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde
Deskripsi Easily determine if your CMP implementation is functional
Ukuran File 73.82 KB
Jumlah Instalasi 1,243
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2020-09-21
Tanggal Publikasi 2020-09-20
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://twofutures.co
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://twofutures.co/legal/privacy
Bahasa yang Didukung 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"
    ]
}