Datalayer Checker

The easiest way to debug and check the dataLayer implementations without having to use the browser console!

Τι είναι το Datalayer Checker;

Το Datalayer Checker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://sublimetrix.com, και η κύρια λειτουργία του είναι "The easiest way to debug and check the dataLayer implementations without having to use the browser console!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Datalayer Checker

Λήψη αρχείων επέκτασης Datalayer Checker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Sublimetrix is happy to release Datalayer Checker 2 with several new features and a revamped design!

NEW FEATURES:
- Flat & Json view
- Copy to clipboard variables (fast GTM variable mapping)
- Auto pushes coloring
- Custom coloring rules to overwrite auto coloring mode
- Syntax coloring within pushed objects
- “ecommerce” key is now highlighted in push messages
- “gtag” objects identified
- Enable or disable datalayer console log messages
- Enable a page toolbar displayed only when a datalayer is found
- Inject up to 5 GTM containers when browsing websites
- Code optimization and bugs fixed


---
You found a bug ?
Please contact us on [email protected]
Describe the bug and provide us an url where we can try and fix it.
Thank you for your help and your support!
---

All messages pushed in a dataLayer will be listed in the extension tab, either when a page loads, through an event or when data is manually pushed.

You just need to install this extension and visit any website before clicking on the extension icon to display the dataLayer content. The basic setup works for Google Tag Manager default dataLayer but user settings will be soon available for custom implementations.

As the extension is still in development, you may encounter some bugs (don’t hesitate to report them!) as well as new features soon!

Ready to save time and efforts? Give it a try!

---

Changelog:
2.3: Flat view and "Copy to clipboard" features!
2.2: Datalayer loading animation!
2.1: New helpful toolbar!
2.0: New features! New design!
1.3: Datalayer Checker now preserve your pushed objects directly in the browser console.
1.2: Datalayer Checker works now with GTM listeners.
1.1: Auto-detection of the dataLayer name.
1.0: We are happy to offer you DataLayer Checker! The best Chrome extension to check the GTM dataLayer. Enjoy!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Datalayer Checker Datalayer Checker
ID ffljdddodmkedhkcjhpmdajhjdbkogke
Επίσημο URL https://chromewebstore.google.com/detail/datalayer-checker/ffljdddodmkedhkcjhpmdajhjdbkogke
Περιγραφή The easiest way to debug and check the dataLayer implementations without having to use the browser console!
Μέγεθος Αρχείου 93.13 KB
Αριθμός Εγκαταστάσεων 151,578
Τρέχουσα Έκδοση 2.3.15
Τελευταία Ενημέρωση 2020-07-27
Ημερομηνία Δημοσίευσης 2020-07-26
Αξιολόγηση 4.69/5 Συνολικά 29 Αξιολογήσεις
Προγραμματιστής https://sublimetrix.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Datalayer Checker",
    "short_name": "dlc",
    "version": "2.3.15",
    "description": "The easiest way to debug and check the dataLayer implementations without having to use the browser console!",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAu48MH2ynV1zcHs7GgECJ\/IxkYAGbV8ZL6v5CQW4svTqgbgNh9RyhKgCxEOqqYZ8Zjy1h3ds5Mi+H6my0UPeLccTyng9P1yjE+VYgq8QepsfjH\/fbFLulUnnGqmfIrHEWxjb4xcUtH3QopBxuw9vuMSlij26J\/FLP2YJnfXUp2KL0JWCKSHECoNambLxKHRM1exbgzQ+d1reFuaNmMYKGYMBEE4AqN7QIMuc4HF7A2w9rIHgfhb6F+d787p7jbZfI1T1GgLgS76I8ncdh+VP28VemA7\/GaWE8eskp+LHHujmJnMaIRoHrfIvLQan2vkZIkMZ3SnmIh2siGCRJZPvuqwIDAQAB",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "\/js\/datalayer-checker.js"
    ]
}