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文件

下載GTM Preview Copy Tool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}