Zemanta Pixel Helper
With the use of the Zemanta Pixel Helper, you can test and troubleshoot your Zemanta pixel implementation on your web site
Vad är Zemanta Pixel Helper?
Zemanta Pixel Helper är en Chrome-tillägg utvecklad av outbrain-ext, och dess huvudfunktion är "With the use of the Zemanta Pixel Helper, you can test and troubleshoot your Zemanta pixel implementation on your web site".
Tilläggsskärmbilder
Ladda ner Zemanta Pixel Helper-förlängningens CRX-fil
Ladda ner Zemanta Pixel Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
If you find that you are not receiving conversions in your dashboard after the campaign has been live for a few days, make sure to check the Pixel Helper for any error messages.
Grundläggande Information om Tillägg
Namn | Zemanta Pixel Helper |
ID | hcmhhjbfamlpaejfmlildgpgedlbdfoh |
Officiell webbadress | https://chromewebstore.google.com/detail/zemanta-pixel-helper/hcmhhjbfamlpaejfmlildgpgedlbdfoh |
Beskrivning | With the use of the Zemanta Pixel Helper, you can test and troubleshoot your Zemanta pixel implementation on your web site |
Filstorlek | 137 KB |
Antal Installationer | 484 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2022-03-16 |
Publiceringsdatum | 2021-11-01 |
Utvecklare | outbrain-ext |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.zemanta.com |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zemanta Pixel Helper", "short_name": "Zemanta Pixel Helper", "version": "1.0.3", "description": "With the use of the Zemanta Pixel Helper, you can test and troubleshoot your Zemanta pixel implementation on your web site", "icons": { "16": "zemanta-icon.png", "48": "48x48.png", "128": "128x128.png" }, "browser_action": { "default_icon": { "16": "zemanta-icon.png", "24": "zemanta-icon.png", "32": "32x32.png" }, "default_title": "Zemanta Pixel Helper", "default_popup": "drop_down\/drop_down.html" }, "permissions": [ "webRequest", "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ] } |