GTM Variable Builder

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

What is GTM Variable Builder?

GTM Variable Builder is a Chrome extension developed by https://triangledigital.xyz, and its main feature is "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)".

Extension Screenshots

screenshot

Download GTM Variable Builder Extension CRX File

Download GTM Variable Builder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GTM Variable Builder GTM Variable Builder
ID feeboihdgpananoagfmbohoogoncndba
Official URL https://chromewebstore.google.com/detail/gtm-variable-builder/feeboihdgpananoagfmbohoogoncndba
Description From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)
File Size 82.71 KB
Installation Count 34,959
Current Version 3.2
Last Updated 2024-02-26
Publish Date 2017-06-22
Rating 4.44/5 Total 25 Ratings
Developer https://triangledigital.xyz
Email [email protected]
Payment Type free
Extension Website https://triangledigital.xyz/gtm-variable-builder
Help Page URL https://koalendar.com/e/meet-with-a-triangle-digital-team-member
Supported Languages 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"
    }
}