GTM Variable Builder

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

Cos'è GTM Variable Builder?

GTM Variable Builder è un'estensione di Chrome sviluppata da https://triangledigital.xyz, e la sua funzione principale è "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GTM Variable Builder

Scarica i file di estensione GTM Variable Builder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome GTM Variable Builder GTM Variable Builder
ID feeboihdgpananoagfmbohoogoncndba
URL Ufficiale https://chromewebstore.google.com/detail/gtm-variable-builder/feeboihdgpananoagfmbohoogoncndba
Descrizione From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)
Dimensione del File 82.71 KB
Conteggio Installazioni 34,959
Versione Corrente 3.2
Ultimo Aggiornamento 2024-02-26
Data di Pubblicazione 2017-06-22
Valutazione 4.44/5 Totale 25 Valutazioni
Sviluppatore https://triangledigital.xyz
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://triangledigital.xyz/gtm-variable-builder
URL della Pagina di Aiuto https://koalendar.com/e/meet-with-a-triangle-digital-team-member
Lingue Supportate 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"
    }
}