Data Layer View

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

什么是Data Layer View?

Data Layer View是由jon.narong开发的Chrome扩展程序,该扩展的主要功能是“Display the contents of a w3c-compliant Data Layer within the console”。

下载Data Layer View扩展crx文件

下载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 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"
    ]
}