HTL Debug
View and analyze your ad configuration
ما هو HTL Debug؟
HTL Debug هو إضافة Chrome تم تطويرها بواسطة https://hashtag-labs.com، والميزة الرئيسية لها هي "View and analyze your ad configuration".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HTL Debug
قم بتنزيل ملفات الامتداد HTL Debug بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A powerful publisher ads debugging extension offered by Hashtag Labs for analyzing Google ad configuration (GAM / GPT), Prebid, HTLBID, Amazon header bidding, and consent management (CMP). معلومات أساسية عن التمديد
| الاسم | |
| ID | nhijejfjieloehdlkicfakfjfmnkgnlf |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/htl-debug/nhijejfjieloehdlkicfakfjfmnkgnlf |
| الوصف | View and analyze your ad configuration |
| حجم الملف | 535 KB |
| عدد التثبيتات | 1,602 |
| النسخة الحالية | 2.5.1 |
| آخر تحديث | 2024-02-20 |
| تاريخ النشر | 2022-01-13 |
| تقييم | 5.00/5 مجموع تقييمات 17 |
| المطور | https://hashtag-labs.com |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://hashtag-labs.com/ |
| عنوان صفحة المساعدة | https://hashtag-labs.com/contact-us.html |
| عنوان صفحة سياسة الخصوصية | https://hashtag-labs.com/privacy-policy.html |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "HTL Debug",
"description": "View and analyze your ad configuration",
"version": "2.5.1",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"icons": {
"16": "extension\/img\/icon-16.png",
"48": "extension\/img\/icon-48.png",
"128": "extension\/img\/icon-128.png"
},
"action": {
"default_icon": "extension\/img\/icon-128.png",
"default_popup": "extension\/popup.html",
"default_title": "Open HTL Debug"
},
"background": {
"service_worker": "extension\/background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"extension\/content_script.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"extension\/bridge.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"devtools_page": "extension\/devtools.html",
"permissions": [
"storage",
"identity",
"identity.email",
"unlimitedStorage"
]
} | |