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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |