dataslayer

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

dataslayer란 무엇입니까?

dataslayer은(는) https://dataslayer.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations."입니다.

확장 프로그램 스크린샷

screenshot

dataslayer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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]"
        }
    }
}