CMP Check
Easily determine if your CMP implementation is functional
ما هو CMP Check؟
CMP Check هو إضافة Chrome تم تطويرها بواسطة https://twofutures.co، والميزة الرئيسية لها هي "Easily determine if your CMP implementation is functional".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة CMP Check
قم بتنزيل ملفات الامتداد CMP Check بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
| عنوان صفحة سياسة الخصوصية | 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"
]
} | |