GTM Debug Down

Keep GTM debug pane down while on preview mode as your preference.

Cos'è GTM Debug Down?

GTM Debug Down è un'estensione di Chrome sviluppata da Paul O'Gorman, e la sua funzione principale è "Keep GTM debug pane down while on preview mode as your preference.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione GTM Debug Down

Scarica i file di estensione GTM Debug Down in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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...                    

Informazioni di Base sull'Estensione

Nome GTM Debug Down GTM Debug Down
ID jkafjapgjmbbgkigffbflbffmenhallh
URL Ufficiale https://chromewebstore.google.com/detail/gtm-debug-down/jkafjapgjmbbgkigffbflbffmenhallh
Descrizione Keep GTM debug pane down while on preview mode as your preference.
Dimensione del File 11.65 KB
Conteggio Installazioni 60
Versione Corrente 0.1
Ultimo Aggiornamento 2019-02-05
Data di Pubblicazione 2019-02-03
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Paul O'Gorman
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}