GTM Folder Color Coding
GTM Folder Color Coding
What is GTM Folder Color Coding?
GTM Folder Color Coding is a Chrome extension developed by jkristenaveline, and its main feature is "GTM Folder Color Coding".
Extension Screenshots
Download GTM Folder Color Coding Extension CRX File
Download GTM Folder Color Coding 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
Organizes background color of properties and tags based on folder name. Helps more clearly see where related tags and fields are in GTM.
Extension Basic Information
Name | GTM Folder Color Coding |
ID | hhdgnekelekmcgbafcmgkjnfmnfkhkoh |
Official URL | https://chromewebstore.google.com/detail/gtm-folder-color-coding/hhdgnekelekmcgbafcmgkjnfmnfkhkoh |
Description | GTM Folder Color Coding |
File Size | 15.69 KB |
Installation Count | 62 |
Current Version | 1.0 |
Last Updated | 2021-03-12 |
Publish Date | 2021-03-11 |
Developer | jkristenaveline |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GTM Folder Color Coding", "description": "GTM Folder Color Coding", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/tagmanager.google.com\/*" ], "run_at": "document_start", "css": [ "gtmFolderCss.css" ], "js": [ "contentScript.js" ] } ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/ic_tag_manager-16.png", "32": "\/images\/ic_tag_manager-32.png", "48": "\/images\/ic_tag_manager-48.png", "128": "\/images\/ic_tag_manager-128.png" } }, "icons": { "16": "\/images\/ic_tag_manager-16.png", "32": "\/images\/ic_tag_manager-32.png", "48": "\/images\/ic_tag_manager-48.png", "128": "\/images\/ic_tag_manager-128.png" } } |