GTM Debug Down
Keep GTM debug pane down while on preview mode as your preference.
O que é GTM Debug Down?
GTM Debug Down é uma extensão do Chrome desenvolvida por Paul O'Gorman, e sua principal característica é "Keep GTM debug pane down while on preview mode as your preference.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GTM Debug Down
Baixe arquivos de extensão GTM Debug Down 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
If you're like me, sometimes I need to preview Google Tag Manager (GTM) changes without the debug pane being visible. Hopefully this will help you like it helped me...
Informações Básicas da Extensão
Nome | GTM Debug Down |
ID | jkafjapgjmbbgkigffbflbffmenhallh |
URL Oficial | https://chromewebstore.google.com/detail/gtm-debug-down/jkafjapgjmbbgkigffbflbffmenhallh |
Descrição | Keep GTM debug pane down while on preview mode as your preference. |
Tamanho do Arquivo | 11.65 KB |
Contagem de Instalações | 60 |
Versão Atual | 0.1 |
Última Atualização | 2019-02-05 |
Data de Publicação | 2019-02-03 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Paul O'Gorman |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GTM Debug Down", "version": "0.1", "permissions": [ "activeTab" ], "description": "Keep GTM debug pane down while on preview mode as your preference.", "browser_action": { "default_title": "GTM Debug Down", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "icons": { "16": "images\/img16.png", "32": "images\/img32.png", "48": "images\/img48.png", "128": "images\/img128.png" } } |