CMP Check
Easily determine if your CMP implementation is functional
What is CMP Check?
CMP Check is a Chrome extension developed by https://twofutures.co, and its main feature is "Easily determine if your CMP implementation is functional".
Extension Screenshots
Download CMP Check Extension CRX File
Download CMP Check extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | CMP Check |
ID | odemilkphklhfejgajeaohjcdfmmfjde |
Official URL | https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde |
Description | Easily determine if your CMP implementation is functional |
File Size | 73.82 KB |
Installation Count | 1,243 |
Current Version | 0.0.2 |
Last Updated | 2020-09-21 |
Publish Date | 2020-09-20 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://twofutures.co |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://twofutures.co/legal/privacy |
Supported Languages | 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" ] } |