Simple Data Layer Viewer

Simple extension for displaying the data layer of a website.

什麼是Simple Data Layer Viewer?

Simple Data Layer Viewer是由https://datapip.de開發的Chrome擴展程式,該擴展的主要功能是“Simple extension for displaying the data layer of a website.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Simple Data Layer Viewer擴展crx文件

下載Simple Data Layer Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        *This extension has no hidden agenda. It does not collect or send any data. It does not communicate to external servers. It simply displays Data Layers.*

This simple plugin helps you to view the data layers of a website. It displays found data layers on click in a popup window or you can use the dedicated panel in the developer tools, which will automatically refresh upon data layer changes.

By default, the extensions searches for the most common data layer names such as 'dataLayer', 'digitalData', 'utag.data' etc. These names can be customized together with some appearance settings.

I hope it helps you in the daily work as it helps me.                    

擴展基本資訊

名稱 Simple Data Layer Viewer Simple Data Layer Viewer
ID mkdjegdakgimmckobdnfiimhgmabbido
官方網址 https://chromewebstore.google.com/detail/simple-data-layer-viewer/mkdjegdakgimmckobdnfiimhgmabbido
簡介 Simple extension for displaying the data layer of a website.
檔案大小 77.96 KB
安裝次數 11,056
目前版本 2.1.4
更新時間 2023-12-07
上架時間 2019-11-13
評分 5.00/5 共 11 次評分
開發者 https://datapip.de
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Data Layer Viewer",
    "short_name": "Data Layer",
    "description": "Simple extension for displaying the data layer of a website.",
    "version": "2.1.4",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_title": "Show Data Layer",
        "default_popup": "\/html\/popup.html",
        "default_icon": {
            "16": "\/img\/logo16.png",
            "32": "\/img\/logo32.png",
            "48": "\/img\/logo48.png",
            "128": "\/img\/logo128.png"
        }
    },
    "options_page": "\/html\/options.html",
    "background": {
        "service_worker": "\/js\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/js\/popup\/inject_script.js",
                "\/js\/panel\/inject_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "\/img\/logo16.png",
        "32": "\/img\/logo32.png",
        "48": "\/img\/logo48.png",
        "128": "\/img\/logo128.png"
    },
    "devtools_page": "\/html\/devtools.html",
    "incognito": "split"
}