GTM Tag Organizer
Extension to organize tags in Google Tag Manager container.
What is GTM Tag Organizer?
GTM Tag Organizer is a Chrome extension developed by http://marketlytics.com, and its main feature is "Extension to organize tags in Google Tag Manager container.".
Extension Screenshots
Download GTM Tag Organizer Extension CRX File
Download GTM Tag Organizer 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
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.
Extension Basic Information
Name | |
ID | iiikaoamhkalbgefogkhafpfloplfiim |
Official URL | https://chrome.google.com/webstore/detail/gtm-tag-organizer/iiikaoamhkalbgefogkhafpfloplfiim |
Description | Extension to organize tags in Google Tag Manager container. |
File Size | 106 KB |
Installation Count | 300 |
Current Version | 0.6 |
Last Updated | 2015-10-06 |
Publish Date | 2015-10-06 |
Rating | 5.00/5 Total 2 Ratings |
Developer | http://marketlytics.com |
Payment Type | free |
Extension Website | http://marketlytics.com/playground/#gtmOrganizer |
Help Page URL | https://github.com/marketlytics/gtm-tag-organizer |
Supported Languages | 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" ] } ] } |