HTL Debug
View and analyze your ad configuration
什么是HTL Debug?
HTL Debug是由https://hashtag-labs.com开发的Chrome扩展程序,该扩展的主要功能是“View and analyze your ad configuration”。
扩展截图
下载HTL Debug扩展crx文件
下载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).
扩展基本信息
名称 | HTL Debug |
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" ] } |