CMP Check
Easily determine if your CMP implementation is functional
什么是CMP Check?
CMP Check是由https://twofutures.co开发的Chrome扩展程序,该扩展的主要功能是“Easily determine if your CMP implementation is functional”。
扩展截图
下载CMP Check扩展crx文件
下载CMP Check扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | odemilkphklhfejgajeaohjcdfmmfjde |
| 官方URL | https://chromewebstore.google.com/detail/cmp-check/odemilkphklhfejgajeaohjcdfmmfjde |
| 简介 | Easily determine if your CMP implementation is functional |
| 文件大小 | 73.82 KB |
| 安装次数 | 1,243 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2020-09-21 |
| 上架时间 | 2020-09-20 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | https://twofutures.co |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://twofutures.co/legal/privacy |
| 支持的语言 | 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"
]
} | |