GTM Tag Organizer
Extension to organize tags in Google Tag Manager container.
GTM Tag Organizerとは何ですか?
GTM Tag Organizerはhttp://marketlytics.comによって開発されたChromeの拡張機能で、その主な機能は「Extension to organize tags in Google Tag Manager container.」です。
拡張機能のスクリーンショット
GTM Tag Organizer拡張機能のCRXファイルをダウンロード
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.
拡張機能の基本情報
名前 | |
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" ] } ] } |