GTM Debug Down

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

Vad är GTM Debug Down?

GTM Debug Down är en Chrome-tillägg utvecklad av Paul O'Gorman, och dess huvudfunktion är "Keep GTM debug pane down while on preview mode as your preference.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner GTM Debug Down-förlängningens CRX-fil

Ladda ner GTM Debug Down-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn GTM Debug Down GTM Debug Down
ID jkafjapgjmbbgkigffbflbffmenhallh
Officiell webbadress https://chromewebstore.google.com/detail/gtm-debug-down/jkafjapgjmbbgkigffbflbffmenhallh
Beskrivning Keep GTM debug pane down while on preview mode as your preference.
Filstorlek 11.65 KB
Antal Installationer 60
Aktuell Version 0.1
Senast Uppdaterad 2019-02-05
Publiceringsdatum 2019-02-03
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Paul O'Gorman
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}