GTM Debug Down

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

Co to jest GTM Debug Down?

GTM Debug Down to rozszerzenie Chrome opracowane przez Paul O'Gorman, a jego główną funkcją jest „Keep GTM debug pane down while on preview mode as your preference.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia GTM Debug Down

Pobierz pliki rozszerzeń GTM Debug Down 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

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

Podstawowe informacje o rozszerzeniu

Nazwa GTM Debug Down GTM Debug Down
ID jkafjapgjmbbgkigffbflbffmenhallh
Oficjalny URL https://chromewebstore.google.com/detail/gtm-debug-down/jkafjapgjmbbgkigffbflbffmenhallh
Opis Keep GTM debug pane down while on preview mode as your preference.
Rozmiar pliku 11.65 KB
Liczba instalacji 60
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2019-02-05
Data Publikacji 2019-02-03
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Paul O'Gorman
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}