CMP Check
Easily determine if your CMP implementation is functional
Co to jest CMP Check?
CMP Check to rozszerzenie Chrome opracowane przez https://twofutures.co, a jego główną funkcją jest „Easily determine if your CMP implementation is functional”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia CMP Check
Pobierz pliki rozszerzeń CMP Check w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | odemilkphklhfejgajeaohjcdfmmfjde |
| Oficjalny URL | https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde |
| Opis | Easily determine if your CMP implementation is functional |
| Rozmiar pliku | 73.82 KB |
| Liczba instalacji | 1,243 |
| Aktualna Wersja | 0.0.2 |
| Ostatnia Aktualizacja | 2020-09-21 |
| Data Publikacji | 2020-09-20 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | https://twofutures.co |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Polityki Prywatności | https://twofutures.co/legal/privacy |
| Obsługiwane Języki | 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"
]
} | |