HTL Debug
View and analyze your ad configuration
Was ist HTL Debug?
HTL Debug ist eine Chrome-Erweiterung, die von https://hashtag-labs.com entwickelt wurde, und ihr Hauptmerkmal ist "View and analyze your ad configuration".
Erweiterungsscreenshots
HTL Debug-Erweiterungs-CRX-Datei herunterladen
Laden Sie HTL Debug-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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).
Grundlegende Informationen zur Erweiterung
Name | HTL Debug |
ID | nhijejfjieloehdlkicfakfjfmnkgnlf |
Offizielle URL | https://chromewebstore.google.com/detail/htl-debug/nhijejfjieloehdlkicfakfjfmnkgnlf |
Beschreibung | View and analyze your ad configuration |
Dateigröße | 535 KB |
Installationsanzahl | 1,602 |
Aktuelle Version | 2.5.1 |
Letztes Update | 2024-02-20 |
Veröffentlichungsdatum | 2022-01-13 |
Bewertung | 5.00/5 Insgesamt 17 Bewertungen |
Entwickler | https://hashtag-labs.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://hashtag-labs.com/ |
Hilfeseite URL | https://hashtag-labs.com/contact-us.html |
URL der Datenschutzrichtlinien-Seite | https://hashtag-labs.com/privacy-policy.html |
Unterstützte Sprachen | 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" ] } |