GTM Injector

Inject Google Tag Manager in any page!

What is GTM Injector?

GTM Injector is a Chrome extension developed by digodat-extensions-admin, and its main feature is "Inject Google Tag Manager in any page!".

Extension Screenshots

screenshot

Download GTM Injector Extension CRX File

Download GTM Injector 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

                        Google Tag Manager injector allows you to locally inject any GTM container on a given site and simulate its effects. 

This is a free extension and still in BETA!                    

Extension Basic Information

Name GTM Injector GTM Injector
ID jmclhcaokinpjpaiidbdfbampmlijbgh
Official URL https://chrome.google.com/webstore/detail/gtm-injector/jmclhcaokinpjpaiidbdfbampmlijbgh
Description Inject Google Tag Manager in any page!
File Size 258 KB
Installation Count 4,000
Current Version 0.2
Last Updated 2021-04-13
Publish Date 2019-10-01
Rating 5.00/5 Total 3 Ratings
Developer digodat-extensions-admin
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GTM Injector",
    "description": "Inject Google Tag Manager in any page!",
    "version": "0.2",
    "icons": {
        "32": "injector-32.png",
        "48": "injector-on-48.png",
        "128": "injector-on-128.png"
    },
    "browser_action": {
        "default_popup": "popUp.html",
        "default_icon": {
            "32": "injector-32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}