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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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/ |
| URL страницы помощи | https://hashtag-labs.com/contact-us.html |
| URL страницы политики конфиденциальности | 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"
]
} | |