Tag Manager Injector

Inject GTM container tags into web pages in Chrome.

Tag Manager Injector là gì?

Tag Manager Injector là một tiện ích mở rộng Chrome được phát triển bởi chris.berger, và tính năng chính của nó là "Inject GTM container tags into web pages in Chrome.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tag Manager Injector

Tải xuống các tệp mở rộng Tag Manager Injector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        * FEATURES *

- Inject GTM container snippets into web pages
- Pre-define data layer variables before the container is loaded
- Rename your data layer (for custom data layer names other than the standard "dataLayer")
- Include or exclude from running on particular sites using regex/exact match for domains

* TAG MANAGER INJECTOR v3 *

TMI is a paid tool enabling you to inject your Google Tag Manager container snippet onto any page of any site without the need for code changes!
All you need is your GTM container ID.

This will be useful if you...

- Are considering using GTM as a tag management system and would like a test drive without actually deploying the GTM container on your site.
- Have a long wait for the snippet to be implemented and would like to pre-configure your container ready for when this change happens.
- Want to allow GTM's preview and debug mode, allowing you to fully configure and test your container prior to releasing the container snippet.


* USER GUIDE *

- Add the extension to Chrome and ensure that TMI is listed in your Extensions and enabled here... chrome://extensions/
- Click the icon in your Chrome interface and enter your GTM container ID in the format GTM-123456
- Refresh any tab to see your container injected

The container snippet is now active on any site you visit within that browser session.

- To stop the container from being injected, simply click the TMI icon again in Chrome and select DEACTIVATE
- You can restrict TMI to injecting GTM on certain domains using an exact and regular expression match.
- You can also push variables to the data layer prior to the container loading to test ecommerce implementations and other taxonomy.

* CHANGE LOG *

version 3.5 (21/06/2019)
- Added ability to rename the dataLayer

version 3.3 (21/06/2019)
- Accidental whitespace automatically removed from GTM container ID

version 3.2 (18/06/2019)
- Re-skin

Fixes - version 3.1 (30/06/2016)
- exclude_matches added to manifest to block on tagmanager.google.com
   This is a workaround for the container import button bug

version 3.0 (11/01/2016):
- Define dataLayer variables before the container is loaded

Fixes - version 2.2 (unknown):
- Various bug fixes
- TMI disabled on tagmanager.google.com by default

version 2.1 (14/10/2015): 
- Hostname include filter
- GTM container ID and expression is retained when the injector is deactivated to avoid re-entry

* HELP AND SUPPORT *
Please send any queries or feature requests to [email protected]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tag Manager Injector Tag Manager Injector
ID ooninanccdmjbcmghimhdfpeklpmlllg
URL Chính Thức https://chrome.google.com/webstore/detail/tag-manager-injector/ooninanccdmjbcmghimhdfpeklpmlllg
Mô tả Inject GTM container tags into web pages in Chrome.
Kích Thước Tệp 46.74 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 3.6
Cập Nhật Lần Cuối 2021-02-10
Ngày Phát Hành 2019-08-14
Đánh Giá 4.47/5 Tổng số 32 Đánh Giá
Nhà Phát Triển chris.berger
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://uk.linkedin.com/pub/chris-berger/70/281/b44
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "browser_action": {
        "default_icon": "tmiLogo256.png",
        "default_title": "TagManagerInjector",
        "default_popup": "popup.html"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Inject GTM container tags into web pages in Chrome.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "name": "Tag Manager Injector",
    "short_name": "TMI",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "exclude_matches": [
                "https:\/\/tagmanager.google.com\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "storage"
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "logoEXT.png",
        "16": "icon-16.png"
    },
    "manifest_version": 2,
    "version": "3.6"
}