CMP Check
Easily determine if your CMP implementation is functional
Vad är CMP Check?
CMP Check är en Chrome-tillägg utvecklad av https://twofutures.co, och dess huvudfunktion är "Easily determine if your CMP implementation is functional".
Tilläggsskärmbilder
Ladda ner CMP Check-förlängningens CRX-fil
Ladda ner CMP Check-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | CMP Check |
ID | odemilkphklhfejgajeaohjcdfmmfjde |
Officiell webbadress | https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde |
Beskrivning | Easily determine if your CMP implementation is functional |
Filstorlek | 73.82 KB |
Antal Installationer | 1,243 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2020-09-21 |
Publiceringsdatum | 2020-09-20 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://twofutures.co |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://twofutures.co/legal/privacy |
Stödda Språk | 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" ] } |