GTM Variable Builder

From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)

什麼是GTM Variable Builder?

GTM Variable Builder是由https://triangledigital.xyz開發的Chrome擴展程式,該擴展的主要功能是“From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)”。

擴展截圖

screenshot

下載GTM Variable Builder擴展crx文件

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

擴展使用說明

                        GTM Variable Builder:

This tool makes it easy for you to highlight key parts of a website, such as text, product IDs, prices, or page titles. Simply select the content you're interested in and click on the extension's icon. To check what you've highlighted, head over to the JS console in Google Chrome.

Run the JavaScript code provided by the tool in the console. If it successfully captures your highlighted content, you can then use this in a custom Google Tag Manager variable, or in any other place where you need to submit product information, values, IDs, and so on.                    

擴展基本資訊

名稱 GTM Variable Builder GTM Variable Builder
ID feeboihdgpananoagfmbohoogoncndba
官方網址 https://chromewebstore.google.com/detail/gtm-variable-builder/feeboihdgpananoagfmbohoogoncndba
簡介 From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)
檔案大小 82.71 KB
安裝次數 34,959
目前版本 3.2
更新時間 2024-02-26
上架時間 2017-06-22
評分 4.44/5 共 25 次評分
開發者 https://triangledigital.xyz
電子郵箱 [email protected]
付費類型 free
擴展官網 https://triangledigital.xyz/gtm-variable-builder
說明頁面URL https://koalendar.com/e/meet-with-a-triangle-digital-team-member
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GTM Variable Builder",
    "description": "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)",
    "version": "3.2",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_name": "Enable Remarketing Selector",
        "default_icon": "icon.png"
    }
}