Data Layer View
Display the contents of a w3c-compliant Data Layer within the console
Τι είναι το Data Layer View;
Το Data Layer View είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jon.narong, και η κύρια λειτουργία του είναι "Display the contents of a w3c-compliant Data Layer within the console".
Λήψη αρχείου CRX της επέκτασης Data Layer View
Λήψη αρχείων επέκτασης Data Layer View σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Display the contents of a website's w3c-spec Customer Experience Digital Data Layer object directly with the console. The extension will crawl through the nested Javascript object and display a flattened version of the object's keys and values directly within the developer console. The purpose of this extension is to simplify data layer debugging and validation. V1.1 - Bug fix for sort issue when duplicate parents exist in multiple levels of object hierarchy.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Data Layer View |
ID | iggjmbmdjelfgghlkghnmfmblkghbclf |
Επίσημο URL | https://chromewebstore.google.com/detail/data-layer-view/iggjmbmdjelfgghlkghnmfmblkghbclf |
Περιγραφή | Display the contents of a w3c-compliant Data Layer within the console |
Μέγεθος Αρχείου | 11.1 KB |
Αριθμός Εγκαταστάσεων | 69 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2017-03-02 |
Ημερομηνία Δημοσίευσης | 2017-03-02 |
Προγραμματιστής | jon.narong |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Data Layer View", "version": "1.1", "description": "Display the contents of a w3c-compliant Data Layer within the console", "author": "Jon Narong", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_title": "View Data Layer" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "datalayerview.js" ], "permissions": [ "activeTab", "storage" ] } |