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 |
官方網址 | 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 |
電子郵箱 | [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:\/\/*\/*" ] } ] } |