Digital Data Layer Debugger

This extension helps to debug Digital Data Layer events

Digital Data Layer Debuggerคืออะไร?

Digital Data Layer Debugger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Driveback LLC และคุณลักษณะหลักของมันคือ "This extension helps to debug Digital Data Layer events"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Digital Data Layer Debugger

ดาวน์โหลดไฟล์ส่วนขยาย 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\/"
    ]
}