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
官方網址 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\/"
    ]
}