dataslayer
Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.
dataslayer là gì?
dataslayer là một tiện ích mở rộng Chrome được phát triển bởi https://dataslayer.org, và tính năng chính của nó là "Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng dataslayer
Tải xuống các tệp mở rộng dataslayer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
dataslayer adds a panel to Chrome Developer Tools that monitors tag management data layers and displays changes in an easy-to-read, user-friendly format. Supported TMS/variables include: - Google Tag Manager dataLayer variable - Adobe Launch rules and data elements - Adobe DTM page load rules and detection - Tealium data layer - TagCommander data layer - custom data layers (any variable represented as a JavaScript object) dataslayer supports multiple data layers / GTM containers on a single page, including those in embedded iframes. dataslayer also decodes and displays tags (including pageviews, variables, and click events) from: - Google Analytics (including App + Web, Universal Analytics / analytics.js, dc.js, and ga.js) - Adobe Analytics / Omniture SiteCatalyst - Floodlight If you're using a beta or dev channel of Chrome, you can optionally enable blocking of captured tags to prevent data pollution. For feature requests and bug reports, please either use the 'Send Feedback' option in the Chrome Web Store or reach out directly to [email protected]. Source lives at https://github.com/sean-adams/dataslayer if you'd like to contribute!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | dataslayer |
ID | ikbablmmjldhamhcldjjigniffkkjgpo |
URL Chính Thức | https://chromewebstore.google.com/detail/dataslayer/ikbablmmjldhamhcldjjigniffkkjgpo |
Mô tả | Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations. |
Kích Thước Tệp | 417 KB |
Số Lần Cài Đặt | 118,702 |
Phiên Bản Hiện Tại | 1.5.1 |
Cập Nhật Lần Cuối | 2021-06-06 |
Ngày Phát Hành | 2019-06-05 |
Đánh Giá | 4.63/5 Tổng số 80 Đánh Giá |
Nhà Phát Triển | https://dataslayer.org |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://dataslayer.org |
URL Trang Trợ Giúp | https://dataslayer.org/documentation/ |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "dataslayer", "description": "Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.", "short_name": "dataslayer", "version": "1.5.1", "icons": { "48": "i48.png", "128": "i128.png" }, "devtools_page": "devtools.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_title": "dataslayer" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "injectlaunchmonitors.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "inject.js", "injectlaunchmonitors.js" ], "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*", "notifications", "webNavigation", "declarativeWebRequest" ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |