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
官方URL 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"
    }
}