GTM Variable Builder
From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)
Was ist GTM Variable Builder?
GTM Variable Builder ist eine Chrome-Erweiterung, die von https://triangledigital.xyz entwickelt wurde, und ihr Hauptmerkmal ist "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)".
Erweiterungsscreenshots
GTM Variable Builder-Erweiterungs-CRX-Datei herunterladen
Laden Sie GTM Variable Builder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | GTM Variable Builder |
ID | feeboihdgpananoagfmbohoogoncndba |
Offizielle URL | https://chromewebstore.google.com/detail/gtm-variable-builder/feeboihdgpananoagfmbohoogoncndba |
Beschreibung | From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz) |
Dateigröße | 82.71 KB |
Installationsanzahl | 34,959 |
Aktuelle Version | 3.2 |
Letztes Update | 2024-02-26 |
Veröffentlichungsdatum | 2017-06-22 |
Bewertung | 4.44/5 Insgesamt 25 Bewertungen |
Entwickler | https://triangledigital.xyz |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://triangledigital.xyz/gtm-variable-builder |
Hilfeseite URL | https://koalendar.com/e/meet-with-a-triangle-digital-team-member |
Unterstützte Sprachen | 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" } } |