CMP Check

Easily determine if your CMP implementation is functional

CMP Checkとは何ですか?

CMP Checkはhttps://twofutures.coによって開発されたChromeの拡張機能で、その主な機能は「Easily determine if your CMP implementation is functional」です。

拡張機能のスクリーンショット

screenshot

CMP Check拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}