CMP Check
Easily determine if your CMP implementation is functional
CMP Check là gì?
CMP Check là một tiện ích mở rộng Chrome được phát triển bởi https://twofutures.co, và tính năng chính của nó là "Easily determine if your CMP implementation is functional".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CMP Check
Tải xuống các tệp mở rộng CMP Check dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CMP Check |
ID | odemilkphklhfejgajeaohjcdfmmfjde |
URL Chính Thức | https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde |
Mô tả | Easily determine if your CMP implementation is functional |
Kích Thước Tệp | 73.82 KB |
Số Lần Cài Đặt | 1,243 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2020-09-21 |
Ngày Phát Hành | 2020-09-20 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://twofutures.co |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://twofutures.co/legal/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |