dataslayer

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

dataslayer क्या है?

dataslayer https://dataslayer.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में dataslayer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम dataslayer dataslayer
ID ikbablmmjldhamhcldjjigniffkkjgpo
आधिकारिक URL https://chromewebstore.google.com/detail/dataslayer/ikbablmmjldhamhcldjjigniffkkjgpo
विवरण Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.
फ़ाइल का आकार 417 KB
स्थापना संख्या 118,702
वर्तमान संस्करण 1.5.1
अंतिम अपडेट 2021-06-06
प्रकाशन तिथि 2019-06-05
रेटिंग 4.63/5 कुल 80 रेटिंग्स
डेवलपर https://dataslayer.org
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://dataslayer.org
सहायता पृष्ठ URL https://dataslayer.org/documentation/
समर्थित भाषाएँ 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]"
        }
    }
}