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"
    ]
}