HTL Debug
View and analyze your ad configuration
Co to jest HTL Debug?
HTL Debug to rozszerzenie Chrome opracowane przez https://hashtag-labs.com, a jego główną funkcją jest „View and analyze your ad configuration”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia HTL Debug
Pobierz pliki rozszerzeń HTL Debug w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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).
Podstawowe informacje o rozszerzeniu
Nazwa | HTL Debug |
ID | nhijejfjieloehdlkicfakfjfmnkgnlf |
Oficjalny URL | https://chromewebstore.google.com/detail/htl-debug/nhijejfjieloehdlkicfakfjfmnkgnlf |
Opis | View and analyze your ad configuration |
Rozmiar pliku | 535 KB |
Liczba instalacji | 1,602 |
Aktualna Wersja | 2.5.1 |
Ostatnia Aktualizacja | 2024-02-20 |
Data Publikacji | 2022-01-13 |
Ocena | 5.00/5 Łącznie 17 Oceny |
Deweloper | https://hashtag-labs.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://hashtag-labs.com/ |
Adres URL Strony Pomocy | https://hashtag-labs.com/contact-us.html |
Adres URL Strony Polityki Prywatności | https://hashtag-labs.com/privacy-policy.html |
Obsługiwane Języki | 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" ] } |