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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } |