dataslayer

Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.

Qu'est-ce que dataslayer ?

dataslayer est une extension Chrome développée par https://dataslayer.org, et sa fonction principale est "Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension dataslayer

Téléchargez les fichiers d'extension dataslayer 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

                        dataslayer adds a panel to Chrome Developer Tools that monitors tag management data layers and displays changes in an easy-to-read, user-friendly format.

Supported TMS/variables include:
- Google Tag Manager dataLayer variable
- Adobe Launch rules and data elements
- Adobe DTM page load rules and detection
- Tealium data layer
- TagCommander data layer
- custom data layers (any variable represented as a JavaScript object)

dataslayer supports multiple data layers / GTM containers on a single page, including those in embedded iframes.

dataslayer also decodes and displays tags (including pageviews, variables, and click events) from:
- Google Analytics (including App + Web, Universal Analytics / analytics.js, dc.js, and ga.js)
- Adobe Analytics / Omniture SiteCatalyst
- Floodlight

If you're using a beta or dev channel of Chrome, you can optionally enable blocking of captured tags to prevent data pollution.

For feature requests and bug reports, please either use the 'Send Feedback' option in the Chrome Web Store or reach out directly to [email protected].

Source lives at https://github.com/sean-adams/dataslayer if you'd like to contribute!                    

Informations de Base sur l'Extension

Nom dataslayer dataslayer
ID ikbablmmjldhamhcldjjigniffkkjgpo
URL Officiel https://chromewebstore.google.com/detail/dataslayer/ikbablmmjldhamhcldjjigniffkkjgpo
Description Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.
Taille du Fichier 417 KB
Nombre d'Installations 118,702
Version Actuelle 1.5.1
Dernière Mise à Jour 2021-06-06
Date de Publication 2019-06-05
Évaluation 4.63/5 Total 80 Évaluations
Développeur https://dataslayer.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://dataslayer.org
URL de la Page d'Aide https://dataslayer.org/documentation/
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "dataslayer",
    "description": "Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.",
    "short_name": "dataslayer",
    "version": "1.5.1",
    "icons": {
        "48": "i48.png",
        "128": "i128.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "dataslayer"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "injectlaunchmonitors.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "inject.js",
        "injectlaunchmonitors.js"
    ],
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "webNavigation",
        "declarativeWebRequest"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}