GTM Tag Organizer

Extension to organize tags in Google Tag Manager container.

GTM Tag Organizerคืออะไร?

GTM Tag Organizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://marketlytics.com และคุณลักษณะหลักของมันคือ "Extension to organize tags in Google Tag Manager container."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GTM Tag Organizer

ดาวน์โหลดไฟล์ส่วนขยาย GTM Tag Organizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        GTM Tag Organizer is an extension to group and organize tags in your google tag manager container.

It allows you to group tags based on their Type or Name. 

Grouping by Name is an advanced feature where you can specify how to split the name to group tags.

The extension is open source and was originally built to aid in our workflow at MarketLytics. Fixes & suggestions welcome. Code can be viewed at https://github.com/marketlytics/gtm-tag-organizer

v0.6
Updated misc fixes. 
Added option to quickly disable the plugin within the grouping settings.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GTM Tag Organizer GTM Tag Organizer
ID iiikaoamhkalbgefogkhafpfloplfiim
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/gtm-tag-organizer/iiikaoamhkalbgefogkhafpfloplfiim
คำอธิบาย Extension to organize tags in Google Tag Manager container.
ขนาดไฟล์ 106 KB
จำนวนการติดตั้ง 300
เวอร์ชันปัจจุบัน 0.6
อัปเดตครั้งล่าสุด 2015-10-06
วันที่เผยแพร่ 2015-10-06
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา http://marketlytics.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://marketlytics.com/playground/#gtmOrganizer
URL หน้าช่วยเหลือ https://github.com/marketlytics/gtm-tag-organizer
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GTM Tag Organizer",
    "short_name": "GTM Organize",
    "version": "0.6",
    "manifest_version": 2,
    "description": "Extension to organize tags in Google Tag Manager container.",
    "homepage_url": "http:\/\/marketlytics.com\/playground\/?utm_source=chrome&utm_medium=referral&utm_campaign=tagOrganize#gtmOrganizer",
    "icons": {
        "16": "icons\/GTM-logo16.png",
        "48": "icons\/GTM-logo48.png",
        "128": "icons\/GTM-logo128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/page_action\/page_action.html",
    "page_action": {
        "default_icon": "icons\/GTM-logo19.png",
        "default_title": "GTM Tag Organizer",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "contentSettings",
        "storage",
        "https:\/\/www.google.com\/tagmanager\/web\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/tagmanager\/web\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.google.com\/tagmanager\/web\/*"
            ],
            "js": [
                "src\/inject\/jquery.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}