GTM Injector

Inject Google Tag Manager in any page!

GTM Injectorとは何ですか?

GTM Injectorはdigodat-extensions-adminによって開発されたChromeの拡張機能で、その主な機能は「Inject Google Tag Manager in any page!」です。

拡張機能のスクリーンショット

screenshot

GTM Injector拡張機能のCRXファイルをダウンロード

GTM Injector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 GTM Injector GTM Injector
ID jmclhcaokinpjpaiidbdfbampmlijbgh
公式URL https://chrome.google.com/webstore/detail/gtm-injector/jmclhcaokinpjpaiidbdfbampmlijbgh
説明 Inject Google Tag Manager in any page!
ファイルサイズ 258 KB
インストール数 4,000
現在のバージョン 0.2
最終更新日 2021-04-13
公開日 2019-10-01
評価 5.00/5 合計 3 レビュー
開発者 digodat-extensions-admin
Eメール [email protected]
支払い方法 free
対応言語 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:\/\/*\/*"
    ]
}