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 |
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 |
Eメール | [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" ] } |