HTL Debug
View and analyze your ad configuration
Cos'è HTL Debug?
HTL Debug è un'estensione di Chrome sviluppata da https://hashtag-labs.com, e la sua funzione principale è "View and analyze your ad configuration".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HTL Debug
Scarica i file di estensione HTL Debug in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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). Informazioni di Base sull'Estensione
| Nome | |
| ID | nhijejfjieloehdlkicfakfjfmnkgnlf |
| URL Ufficiale | https://chromewebstore.google.com/detail/htl-debug/nhijejfjieloehdlkicfakfjfmnkgnlf |
| Descrizione | View and analyze your ad configuration |
| Dimensione del File | 535 KB |
| Conteggio Installazioni | 1,602 |
| Versione Corrente | 2.5.1 |
| Ultimo Aggiornamento | 2024-02-20 |
| Data di Pubblicazione | 2022-01-13 |
| Valutazione | 5.00/5 Totale 17 Valutazioni |
| Sviluppatore | https://hashtag-labs.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://hashtag-labs.com/ |
| URL della Pagina di Aiuto | https://hashtag-labs.com/contact-us.html |
| URL della Pagina della Politica sulla Privacy | https://hashtag-labs.com/privacy-policy.html |
| Lingue Supportate | 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"
]
} | |