CMP Check

Easily determine if your CMP implementation is functional

CMP Checkคืออะไร?

CMP Check เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://twofutures.co และคุณลักษณะหลักของมันคือ "Easily determine if your CMP implementation is functional"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CMP Check

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

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

                        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.                    

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

ชื่อ CMP Check CMP Check
ID odemilkphklhfejgajeaohjcdfmmfjde
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde
คำอธิบาย Easily determine if your CMP implementation is functional
ขนาดไฟล์ 73.82 KB
จำนวนการติดตั้ง 1,243
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2020-09-21
วันที่เผยแพร่ 2020-09-20
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://twofutures.co
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://twofutures.co/legal/privacy
ภาษาที่รองรับ 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"
    ]
}