Outbrain Pixel Tracker
With the use of the Outbrain Pixel Tracker, you can test and troubleshoot your Outbrain pixel implementation on your web site
Τι είναι το Outbrain Pixel Tracker;
Το Outbrain Pixel Tracker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον outbrain-ext, και η κύρια λειτουργία του είναι "With the use of the Outbrain Pixel Tracker, you can test and troubleshoot your Outbrain pixel implementation on your web site".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Outbrain Pixel Tracker
Λήψη αρχείων επέκτασης Outbrain Pixel Tracker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 Tracker for any error messages.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Outbrain Pixel Tracker |
ID | daebadnaphbiobojnpgcenlkgpihmbdc |
Επίσημο URL | https://chromewebstore.google.com/detail/outbrain-pixel-tracker/daebadnaphbiobojnpgcenlkgpihmbdc |
Περιγραφή | With the use of the Outbrain Pixel Tracker, you can test and troubleshoot your Outbrain pixel implementation on your web site |
Μέγεθος Αρχείου | 28.08 KB |
Αριθμός Εγκαταστάσεων | 10,000 |
Τρέχουσα Έκδοση | 2.0.0.0 |
Τελευταία Ενημέρωση | 2023-07-11 |
Ημερομηνία Δημοσίευσης | 2019-06-06 |
Αξιολόγηση | 3.60/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | outbrain-ext |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.outbrain.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.outbrain.com/help/advertisers/troubleshoot-pixel-installation/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Outbrain Pixel Tracker", "short_name": "Outbrain Pixel Tracker", "version": "2.0.0.0", "description": "With the use of the Outbrain Pixel Tracker, you can test and troubleshoot your Outbrain pixel implementation on your web site", "icons": { "16": "Amelia.png", "48": "48x48.png", "128": "128x128.png" }, "action": { "default_icon": { "16": "Amelia.png", "24": "Amelia.png", "32": "32x32.png" }, "default_title": "Outbrain Pixel Tracker", "default_popup": "drop_down\/drop_down.html" }, "permissions": [ "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ] } |