GTM Debug Down

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

Apa itu GTM Debug Down?

GTM Debug Down adalah ekstensi Chrome yang dikembangkan oleh Paul O'Gorman, dan fitur utamanya adalah "Keep GTM debug pane down while on preview mode as your preference.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi GTM Debug Down

Unduh file ekstensi GTM Debug Down dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama GTM Debug Down GTM Debug Down
ID jkafjapgjmbbgkigffbflbffmenhallh
URL Resmi https://chromewebstore.google.com/detail/gtm-debug-down/jkafjapgjmbbgkigffbflbffmenhallh
Deskripsi Keep GTM debug pane down while on preview mode as your preference.
Ukuran File 11.65 KB
Jumlah Instalasi 60
Versi Saat Ini 0.1
Terakhir Diperbarui 2019-02-05
Tanggal Publikasi 2019-02-03
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Paul O'Gorman
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}