Simple Data Layer Viewer

Simple extension for displaying the data layer of a website.

¿Qué es Simple Data Layer Viewer?

Simple Data Layer Viewer es una extensión de Chrome desarrollada por https://datapip.de, y su función principal es "Simple extension for displaying the data layer of a website.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Simple Data Layer Viewer

Descarga archivos de extensión Simple Data Layer Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        *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.                    

Información Básica de la Extensión

Nombre Simple Data Layer Viewer Simple Data Layer Viewer
ID mkdjegdakgimmckobdnfiimhgmabbido
URL Oficial https://chromewebstore.google.com/detail/simple-data-layer-viewer/mkdjegdakgimmckobdnfiimhgmabbido
Descripción Simple extension for displaying the data layer of a website.
Tamaño del Archivo 77.96 KB
Cantidad de Instalaciones 11,056
Versión Actual 2.1.4
Última Actualización 2023-12-07
Fecha de Publicación 2019-11-13
Calificación 5.00/5 Total de 11 Calificaciones
Desarrollador https://datapip.de
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
}