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). 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |