CMP Check
Easily determine if your CMP implementation is functional
Cos'è CMP Check?
CMP Check è un'estensione di Chrome sviluppata da https://twofutures.co, e la sua funzione principale è "Easily determine if your CMP implementation is functional".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CMP Check
Scarica i file di estensione CMP Check in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | odemilkphklhfejgajeaohjcdfmmfjde |
| URL Ufficiale | https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde |
| Descrizione | Easily determine if your CMP implementation is functional |
| Dimensione del File | 73.82 KB |
| Conteggio Installazioni | 1,243 |
| Versione Corrente | 0.0.2 |
| Ultimo Aggiornamento | 2020-09-21 |
| Data di Pubblicazione | 2020-09-20 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | https://twofutures.co |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina della Politica sulla Privacy | https://twofutures.co/legal/privacy |
| Lingue Supportate | 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"
]
} | |