GTM Variable Builder
From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)
Qu'est-ce que GTM Variable Builder ?
GTM Variable Builder est une extension Chrome développée par https://triangledigital.xyz, et sa fonction principale est "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GTM Variable Builder
Téléchargez les fichiers d'extension GTM Variable Builder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GTM Variable Builder |
ID | feeboihdgpananoagfmbohoogoncndba |
URL Officiel | 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) |
Taille du Fichier | 82.71 KB |
Nombre d'Installations | 34,959 |
Version Actuelle | 3.2 |
Dernière Mise à Jour | 2024-02-26 |
Date de Publication | 2017-06-22 |
Évaluation | 4.44/5 Total 25 Évaluations |
Développeur | https://triangledigital.xyz |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://triangledigital.xyz/gtm-variable-builder |
URL de la Page d'Aide | https://koalendar.com/e/meet-with-a-triangle-digital-team-member |
Langues Prises en Charge | 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" } } |