HTL Debug
View and analyze your ad configuration
Hvad er HTL Debug?
HTL Debug er en Chrome-udvidelse udviklet af https://hashtag-labs.com, og dens hovedfunktion er "View and analyze your ad configuration".
Udvidelsesskærmbilleder
Download HTL Debug-udvidelses-CRX-fil
Download HTL Debug-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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). Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nhijejfjieloehdlkicfakfjfmnkgnlf |
| Officiel URL | https://chromewebstore.google.com/detail/htl-debug/nhijejfjieloehdlkicfakfjfmnkgnlf |
| Beskrivelse | View and analyze your ad configuration |
| Filstørrelse | 535 KB |
| Antal Installationer | 1,602 |
| Nuværende Version | 2.5.1 |
| Senest Opdateret | 2024-02-20 |
| Udgivelsesdato | 2022-01-13 |
| Bedømmelse | 5.00/5 Samlet 17 Bedømmelser |
| Udvikler | https://hashtag-labs.com |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://hashtag-labs.com/ |
| Hjælpeside-URL | https://hashtag-labs.com/contact-us.html |
| URL til Fortrolighedspolitik Side | https://hashtag-labs.com/privacy-policy.html |
| Understøttede Sprog | 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"
]
} | |