Teads Pixel Helper
Tool providing information on teads tracker's integration
Teads Pixel Helperとは何ですか?
Teads Pixel HelperはTeads.comによって開発されたChromeの拡張機能で、その主な機能は「Tool providing information on teads tracker's integration」です。
拡張機能のスクリーンショット
Teads Pixel Helper拡張機能のCRXファイルをダウンロード
Teads Pixel Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will allow user / Teads customers to verify the proper setup and firing of Teads pixel on an advertiser website. A Teads pixel is necessary when a customer is running a performance campaign with Teads. Proper pixel setup is key as it allows for an optimization on event tracked.
拡張機能の基本情報
名前 | Teads Pixel Helper |
ID | pphkfapdogfpoemjlhhadfcmeeogemjo |
公式URL | https://chromewebstore.google.com/detail/teads-pixel-helper/pphkfapdogfpoemjlhhadfcmeeogemjo |
説明 | Tool providing information on teads tracker's integration |
ファイルサイズ | 270 KB |
インストール数 | 2,526 |
現在のバージョン | 4.2.1 |
最終更新日 | 2022-12-06 |
公開日 | 2020-09-24 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Teads.com |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Teads Pixel Helper", "version": "4.2.1", "description": "Tool providing information on teads tracker's integration", "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "activeTab" ], "content_scripts": [ { "js": [ "content\/import-content-script.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] }, { "js": [ "content\/import-iframe-script.js" ], "all_frames": true, "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "action": { "default_title": "Teads Pixel Helper", "default_popup": "popup\/index.html" }, "icons": { "16": "assets\/icons\/icon_16.png", "48": "assets\/icons\/icon_48.png", "128": "assets\/icons\/icon_128.png" }, "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "content\/content-script.js", "content\/iframe-script.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |