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.
擴展基本資訊
名稱 | CMP Check |
ID | odemilkphklhfejgajeaohjcdfmmfjde |
官方網址 | 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" ] } |