Teads Pixel Helper
Tool providing information on teads tracker's integration
Cos'è Teads Pixel Helper?
Teads Pixel Helper è un'estensione di Chrome sviluppata da Teads.com, e la sua funzione principale è "Tool providing information on teads tracker's integration".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Teads Pixel Helper
Scarica i file di estensione Teads Pixel Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Teads Pixel Helper |
ID | pphkfapdogfpoemjlhhadfcmeeogemjo |
URL Ufficiale | https://chromewebstore.google.com/detail/teads-pixel-helper/pphkfapdogfpoemjlhhadfcmeeogemjo |
Descrizione | Tool providing information on teads tracker's integration |
Dimensione del File | 270 KB |
Conteggio Installazioni | 2,526 |
Versione Corrente | 4.2.1 |
Ultimo Aggiornamento | 2022-12-06 |
Data di Pubblicazione | 2020-09-24 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Teads.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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:\/\/*\/*" ] } ] } |