GTM Variable Builder
From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)
Co to jest GTM Variable Builder?
GTM Variable Builder to rozszerzenie Chrome opracowane przez https://triangledigital.xyz, a jego główną funkcją jest „From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GTM Variable Builder
Pobierz pliki rozszerzeń GTM Variable Builder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | GTM Variable Builder |
ID | feeboihdgpananoagfmbohoogoncndba |
Oficjalny URL | https://chromewebstore.google.com/detail/gtm-variable-builder/feeboihdgpananoagfmbohoogoncndba |
Opis | From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz) |
Rozmiar pliku | 82.71 KB |
Liczba instalacji | 34,959 |
Aktualna Wersja | 3.2 |
Ostatnia Aktualizacja | 2024-02-26 |
Data Publikacji | 2017-06-22 |
Ocena | 4.44/5 Łącznie 25 Oceny |
Deweloper | https://triangledigital.xyz |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://triangledigital.xyz/gtm-variable-builder |
Adres URL Strony Pomocy | https://koalendar.com/e/meet-with-a-triangle-digital-team-member |
Obsługiwane Języki | 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" } } |