GTM Tag Organizer
Extension to organize tags in Google Tag Manager container.
Qu'est-ce que GTM Tag Organizer ?
GTM Tag Organizer est une extension Chrome développée par http://marketlytics.com, et sa fonction principale est "Extension to organize tags in Google Tag Manager container.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GTM Tag Organizer
Téléchargez les fichiers d'extension GTM Tag Organizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | iiikaoamhkalbgefogkhafpfloplfiim |
URL Officiel | https://chrome.google.com/webstore/detail/gtm-tag-organizer/iiikaoamhkalbgefogkhafpfloplfiim |
Description | Extension to organize tags in Google Tag Manager container. |
Taille du Fichier | 106 KB |
Nombre d'Installations | 300 |
Version Actuelle | 0.6 |
Dernière Mise à Jour | 2015-10-06 |
Date de Publication | 2015-10-06 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | http://marketlytics.com |
Type de Paiement | free |
Site Web de l'Extension | http://marketlytics.com/playground/#gtmOrganizer |
URL de la Page d'Aide | https://github.com/marketlytics/gtm-tag-organizer |
Langues Prises en Charge | 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" ] } ] } |