Digital Data Layer Debugger

This extension helps to debug Digital Data Layer events

什么是Digital Data Layer Debugger?

Digital Data Layer Debugger是由Driveback LLC开发的Chrome扩展程序,该扩展的主要功能是“This extension helps to debug Digital Data Layer events”。

扩展截图

screenshot

下载Digital Data Layer Debugger扩展crx文件

下载Digital Data Layer Debugger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension helps to debug Digital Data Layer and see notification about all events in real time.                    

扩展基本信息

名称 Digital Data Layer Debugger Digital Data Layer Debugger
ID peofclkoddjlmccahdlpkejefgangbpk
官方URL https://chromewebstore.google.com/detail/digital-data-layer-debugg/peofclkoddjlmccahdlpkejefgangbpk
简介 This extension helps to debug Digital Data Layer events
文件大小 66.02 KB
安装次数 432
当前版本 1.0
更新时间 2016-04-14
上架时间 2016-04-14
开发者 Driveback LLC
电子邮箱 [email protected]
付费类型 free
扩展官网 http://digitaldata.readme.io
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Digital Data Layer Debugger",
    "description": "This extension helps to debug Digital Data Layer events",
    "version": "1.0",
    "author": "Driveback LLC",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "jquery.growl.css"
            ],
            "js": [
                "jquery.min.js",
                "jquery.growl.js",
                "deep-diff.js",
                "debugger.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/off16.png",
            "48": "icons\/off48.png",
            "128": "icons\/off128.png"
        },
        "default_title": "icon"
    },
    "permissions": [
        "activeTab",
        "webNavigation",
        "https:\/\/ajax.googleapis.com\/"
    ]
}