Simple Data Layer Viewer

Simple extension for displaying the data layer of a website.

Qu'est-ce que Simple Data Layer Viewer ?

Simple Data Layer Viewer est une extension Chrome développée par https://datapip.de, et sa fonction principale est "Simple extension for displaying the data layer of a website.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Simple Data Layer Viewer

Téléchargez les fichiers d'extension Simple Data Layer Viewer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Simple Data Layer Viewer Simple Data Layer Viewer
ID mkdjegdakgimmckobdnfiimhgmabbido
URL Officiel https://chromewebstore.google.com/detail/simple-data-layer-viewer/mkdjegdakgimmckobdnfiimhgmabbido
Description Simple extension for displaying the data layer of a website.
Taille du Fichier 77.96 KB
Nombre d'Installations 11,056
Version Actuelle 2.1.4
Dernière Mise à Jour 2023-12-07
Date de Publication 2019-11-13
Évaluation 5.00/5 Total 11 Évaluations
Développeur https://datapip.de
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
}