GTM Debug Down

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

What is GTM Debug Down?

GTM Debug Down is a Chrome extension developed by Paul O'Gorman, and its main feature is "Keep GTM debug pane down while on preview mode as your preference.".

Extension Screenshots

screenshot
screenshot

Download GTM Debug Down Extension CRX File

Download GTM Debug Down extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name GTM Debug Down GTM Debug Down
ID jkafjapgjmbbgkigffbflbffmenhallh
Official URL https://chromewebstore.google.com/detail/gtm-debug-down/jkafjapgjmbbgkigffbflbffmenhallh
Description Keep GTM debug pane down while on preview mode as your preference.
File Size 11.65 KB
Installation Count 60
Current Version 0.1
Last Updated 2019-02-05
Publish Date 2019-02-03
Rating 5.00/5 Total 1 Ratings
Developer Paul O'Gorman
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}