GTM Variable Builder

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

Wat is GTM Variable Builder?

GTM Variable Builder is een Chrome-extensie ontwikkeld door https://triangledigital.xyz, en de belangrijkste functie is "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GTM Variable Builder

Download GTM Variable Builder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam GTM Variable Builder GTM Variable Builder
ID feeboihdgpananoagfmbohoogoncndba
Officiële URL https://chromewebstore.google.com/detail/gtm-variable-builder/feeboihdgpananoagfmbohoogoncndba
Beschrijving From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)
Bestandsgrootte 82.71 KB
Aantal Installaties 34,959
Huidige Versie 3.2
Laatst Bijgewerkt 2024-02-26
Publicatiedatum 2017-06-22
Beoordeling 4.44/5 Totaal 25 Beoordelingen
Ontwikkelaar https://triangledigital.xyz
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://triangledigital.xyz/gtm-variable-builder
Help Pagina-URL https://koalendar.com/e/meet-with-a-triangle-digital-team-member
Ondersteunde Talen 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"
    }
}