GTM Variable Builder
From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)
O que é GTM Variable Builder?
GTM Variable Builder é uma extensão do Chrome desenvolvida por https://triangledigital.xyz, e sua principal característica é "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GTM Variable Builder
Baixe arquivos de extensão GTM Variable Builder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | GTM Variable Builder |
ID | feeboihdgpananoagfmbohoogoncndba |
URL Oficial | https://chromewebstore.google.com/detail/gtm-variable-builder/feeboihdgpananoagfmbohoogoncndba |
Descrição | From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz) |
Tamanho do Arquivo | 82.71 KB |
Contagem de Instalações | 34,959 |
Versão Atual | 3.2 |
Última Atualização | 2024-02-26 |
Data de Publicação | 2017-06-22 |
Classificação | 4.44/5 Total de 25 Avaliações |
Desenvolvedor | https://triangledigital.xyz |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://triangledigital.xyz/gtm-variable-builder |
URL da Página de Ajuda | https://koalendar.com/e/meet-with-a-triangle-digital-team-member |
Idiomas Suportados | 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" } } |