Data Layer View

Display the contents of a w3c-compliant Data Layer within the console

Data Layer View là gì?

Data Layer View là một tiện ích mở rộng Chrome được phát triển bởi jon.narong, và tính năng chính của nó là "Display the contents of a w3c-compliant Data Layer within the console".

Tải xuống tệp CRX của tiện ích mở rộng Data Layer View

Tải xuống các tệp mở rộng Data Layer View 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

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Data Layer View Data Layer View
ID iggjmbmdjelfgghlkghnmfmblkghbclf
URL Chính Thức https://chromewebstore.google.com/detail/data-layer-view/iggjmbmdjelfgghlkghnmfmblkghbclf
Mô tả Display the contents of a w3c-compliant Data Layer within the console
Kích Thước Tệp 11.1 KB
Số Lần Cài Đặt 69
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-03-02
Ngày Phát Hành 2017-03-02
Nhà Phát Triển jon.narong
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}