GTM Preview Copy Tool

Adds a copy button to each GTM Preview window dataLayer card, for copying data in specific formats.

GTM Preview Copy Tool란 무엇입니까?

GTM Preview Copy Tool은(는) jjbuckley.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a copy button to each GTM Preview window dataLayer card, for copying data in specific formats."입니다.

확장 프로그램 스크린샷

screenshot

GTM Preview Copy Tool 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Shows a small clipboard icon in the GTM Preview window dataLayer cards when moused-over so that the data can be copied in the following formats:

 - Text (exactly as shown in the card)
 - JSON (creates a valid equivalent JSON object)
 - DL.push (creates an example dataLayer push to output the same data)
 - Excel (tab delimited so that it can be copied into a 2-column Excel table)

Change the copy type by clicking on the Extension icon in the toolbar.

Some known issues:

 - If the Preview Pane loads for a site in an iframe, the clipboard button doesn't appear.
 - The copy type pop-up window looks ugly as s**t.

To Do:

 - Fix the above issues.
 - Make the icon become "enabled" when the extension loads successfully, something which is currently indicated by a console log.

Github

 - https://github.com/JibbyJames/GTM-Preview-Copy-Tool                    

확장 프로그램 기본 정보

이름 GTM Preview Copy Tool GTM Preview Copy Tool
ID clelhaioaodkbbhpdpminnjfdccbjpgc
공식 URL https://chromewebstore.google.com/detail/gtm-preview-copy-tool/clelhaioaodkbbhpdpminnjfdccbjpgc
설명 Adds a copy button to each GTM Preview window dataLayer card, for copying data in specific formats.
파일 크기 68.01 KB
설치 횟수 75
현재 버전 0.1
최근 업데이트 2018-09-04
출시 날짜 2018-09-04
개발자 jjbuckley.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/JibbyJames/GTM-Preview-Copy-Tool
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GTM Preview Copy Tool",
    "description": "Adds a copy button to each GTM Preview window dataLayer card, for copying data in specific formats.",
    "version": "0.1",
    "version_name": "0.1",
    "browser_action": {
        "default_icon": "images\/ic_launcher_72.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "arrive.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/ic_launcher_48.png",
        "32": "images\/ic_launcher_72.png",
        "48": "images\/ic_launcher_96.png",
        "128": "images\/ic_launcher_144.png"
    },
    "manifest_version": 2
}