CMP Check
Easily determine if your CMP implementation is functional
Wat is CMP Check?
CMP Check is een Chrome-extensie ontwikkeld door https://twofutures.co, en de belangrijkste functie is "Easily determine if your CMP implementation is functional".
Extensie Screenshots
Download het CRX-bestand van de extensie CMP Check
Download CMP Check-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | CMP Check |
ID | odemilkphklhfejgajeaohjcdfmmfjde |
Officiële URL | https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde |
Beschrijving | Easily determine if your CMP implementation is functional |
Bestandsgrootte | 73.82 KB |
Aantal Installaties | 1,243 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2020-09-21 |
Publicatiedatum | 2020-09-20 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://twofutures.co |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://twofutures.co/legal/privacy |
Ondersteunde Talen | 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" ] } |